Hello! I'd like to install Datahub on my K8s clust...
# troubleshoot
c
Hello! I'd like to install Datahub on my K8s cluster using helm (https://github.com/acryldata/datahub-helm/tree/master/charts/prerequisites). But the problem is my K8S cluster has no internet access. So i need to install al the docker images that this Datahub Helm Chart uses. I got 2 questions. 1. Which images are going to be used for helm install locally ? Because I see two different tags for the same image. For example "acryldata/datahub-actions", v0.0.1 for subcharts, v0.0.7 for another (Subcharts https://github.com/acryldata/datahub-helm/blob/master/charts/datahub/subcharts/acryl-datahub-actions/values.yaml), ( https://github.com/acryldata/datahub-helm/blob/master/charts/datahub/values.yaml). 2. When you go to prerequsite(https://github.com/acryldata/datahub-helm/tree/master/charts/prerequisites), I can't find any informations(more specifically repository:tag info) about the images. How do i figure out the exact repository:tag informations of dependency images that are going to be used? So that i can install Datahub on K8S locally(without internet)! I would really appreciate it if you answer my questions.. thanks for your time!
b
For (2), you need to see the respective helm charts listed inside charts.yaml, the images to copy are listed in the values.yaml of the respective charts.
b
for 1) if you don't change the top level values.yaml it will use v0.0.7
c
Thanks a lot!