<@U06TM7M40RK> for the datahub 1.0 upgrade, we use our own docker registry for images, however in the values.yaml file we have the global imageRegistry field that is mandatory and is preppending the image name with causes an image error pull in EKS
To address the issue of the global.imageRegistry
field in the values.yaml
file causing image pull errors in EKS, you can consider the following steps:
-
Understand the
global.imageRegistry
Field: Theglobal.imageRegistry
field is used to specify a custom Docker registry for all images. This field prepends the specified registry to the image names, which can cause issues if the registry is not correctly set up or if the images are not available in the specified registry. -
Check Image Availability: Ensure that all the required DataHub images are available in your custom Docker registry. You can verify this by checking the image tags and names in your registry.
-
Modify the
values.yaml
File: If theglobal.imageRegistry
field is causing issues, you can try removing or commenting out this field in thevalues.yaml
file. Instead, specify the full image path for each component individually. This approach allows you to have more control over the image paths and avoid the automatic prepending of the registry. -
Specify Full Image Paths: In the
values.yaml
file, specify the full image path for each DataHub component. For example:datahub-gms: image: repository: your-registry/datahub-gms tag: 1.0.0 datahub-frontend: image: repository: your-registry/datahub-frontend-react tag: 1.0.0
-
Test the Configuration: After making these changes, deploy the updated Helm chart to your EKS cluster and verify that the images are being pulled correctly.
Would you like more detailed steps or further customization options?
Sources:
- https://datahubspace.slack.com/archives/CUMUWQU66/p1720545226.835399|https://datahubspace.slack.com/archives/CUMUWQU66/p1720545226.835399
- https://datahubspace.slack.com/archives/C029A3M079U/p1720784113.905869|https://datahubspace.slack.com/archives/C029A3M079U/p1720784113.905869
0 button
0 button
Hint: Mention @runllm in the thread for followups.
<@U06TM7M40RK> I got rid of the gloval.imageRegistry field but now I get the error Failed to apply default image tag as a / is preppended
The DataHub’s documentation I have ingested does not mention how to resolve the issue of a /
being prepended to the image name after removing the global.imageRegistry
field. You might want to check if there are any other fields or configurations in your values.yaml
that could be affecting the image path, such as individual image repository settings or default image tags. If this doesn’t help, please reach out to the DataHub support team for further assistance. 0 button
0 button
Hint: Mention @runllm in the thread for followups.
By the way, I found these links that might be relevant to what you’re looking for. Let me know if this helps: - No Code Upgrade (In-Place Migration Guide)
Hi ! Did this interaction resolve your issue or do you still require assistance ?
Please tag @ RunLLM if you still need further assistance !
Or tag @Datahub Community Support if you require a person to take a look
Hope this helps ! ><