Access to Images and Charts
Important
The necessary credentials to access the repositories can be obtained upon request.
Example of pulling a Docker image from the repository
export USERNAME=
export PASSWORD=
export URL_DOCKER_REGISTRY=
export IMAGE=
docker login $URL_DOCKER_REGISTRY --username $USERNAME --password $PASSWORD
docker pull $IMAGE
Example of pulling a Helm chart from the repository
export URL_CHART_REGISTRY=
export CHART_NAME=
export CHART_VERSION=
helm repo add predicate $URL_CHART_REGISTRY --username $USERNAME --password $PASSWORD
helm repo update
helm search repo $CHART_NAME -l --devel
helm pull predicate --version $CHART_VERSION
Important
To successfully pull images in the cluster, it is necessary to create a secret type: kubernetes.io/dockerconfigjson with the name
regcred in the required namespace.