@@ -40,9 +40,13 @@ To validate you registry credentials are working with `helm`, we can use it to
4040show us the full list of values available to configure the chart:
4141
4242``` shell
43- helm show values oci://eu.gcr.io/jetstack-secure-enterprise/charts/jetstack-agent --registry-config " ${TLSPK_DOCKER_CONFIG_FILE} "
43+ export TLSPK_REGISTRY=" eu.gcr.io/jetstack-secure-enterprise"
44+ helm show values oci://${TLSPK_REGISTRY} /charts/jetstack-agent --registry-config " ${TLSPK_DOCKER_CONFIG_FILE} "
4445```
4546
47+ ** Note** : Feel free to alter the registry to the US equivalent if that is closer
48+ to you, for example: ` export TLSPK_REGISTRY="us.gcr.io/jetstack-secure-enterprise" `
49+
4650### 2) Obtaining TLSPK agent credentials:
4751
4852Set the following environments variables for ease of installation:
@@ -81,7 +85,7 @@ Install the chart with the basic configuration:
8185
8286``` shell
8387helm upgrade --install --create-namespace -n jetstack-secure jetstack-agent \
84- oci://eu.gcr.io/jetstack-secure-enterprise /charts/jetstack-agent \
88+ oci://${TLSPK_REGISTRY} /charts/jetstack-agent \
8589 --registry-config " ${TLSPK_DOCKER_CONFIG_FILE} " \
8690 --set config.organisation=" ${TLSPK_ORG} " \
8791 --set config.cluster=" ${TLSPK_CLUSTER_NAME} "
@@ -100,7 +104,7 @@ credential, read from the environment variable just set:
100104
101105``` shell
102106helm upgrade --install --create-namespace -n jetstack-secure jetstack-agent \
103- oci://eu.gcr.io/jetstack-secure-enterprise /charts/jetstack-agent \
107+ oci://${TLSPK_REGISTRY} /charts/jetstack-agent \
104108 --registry-config " ${TLSPK_DOCKER_CONFIG_FILE} " \
105109 --set config.organisation=" ${TLSPK_ORG} " \
106110 --set config.cluster=" ${TLSPK_CLUSTER_NAME} " \
0 commit comments