Log in to your Greennode AI Platform account and navigate to the Model Registry Dashboard at: https://aiplatform.console.greennode.ai/registry.
Find and click on the "Import a model registry" button.
Location & Model registry name: Select cloud location & a specific name for this model
Choose the “Custom container” option in the “Container" section
Specify Image Storage URL:
Provide the URL of your custom container image stored in the container registry. This URL will be used by the Greennode AI Platform to pull the image during training.
Provide Credentials:
If your custom container image requires authentication to access, provide the necessary credentials (such as username and password or access token) to AI Platform.
Ensure that the credentials are securely stored and provided in the required format.
Configuring Ports and Health Checks:
Define the access port through which the prediction requests will be received.
Configure the metric port for monitoring model performance metrics.
Specify the health-check port and path for monitoring the health status of the prediction service.
Network Volume Configuration (optional):
Click the “Import” button to complete the process.
Important Note Regarding Custom Images: The /workspace directory/network-volume directory within each Kubernetes Pod. This provides you with persistent storage for your data. However, if you use a Custom Image and place your code within the /network-volume directory of that image, this code will not be visible in the /network-volume directory of the running container when integrated into Kubernetes.Therefore, when building a Custom Image, please avoid placing code or important data directly in the /network-volume directory. You can create a different subdirectory (e.g., ./app or ./code) and place your code there to avoid conflicts with the PVC.