Pulling Link Chart and Container Images
About this task
You will install Link V1.2.0 using the Helm chart version V7.0.6.
Procedure
-
Retrieve Registry Credentials
- Go to https://hclcr.io and click LOGIN VIA OIDC PROVIDER.
- Log in using your HCL ID.
- After login, click your User ID in the upper-right corner and select User Profile.
- In the CLI secret section, click the copy icon to copy the secret string.
- Save this secret; you will use it to authenticate with the registry.
-
Log In to the Registry
-
Download the Chart
-
Extract the Chart (Optional)
To view the chart contents, extract the file:
tar -xzvf lnk-product-7.0.6.tgz -
Log Out from the Registry
helm registry logout hclcr.io -
Create a Kubernetes Secret for Image Pull
To allow EKS to pull Link container images, create a Docker registry secret in your cluster:
kubectl create secret docker-registry lnk-hclcr-secret \ --docker-username=<your HCL ID> \ --docker-password=<secret string> \ --docker-server=hclcr.ioThis secret will be used by your Kubernetes deployments to authenticate with hclcr.io when pulling Link images.