@@ -40,9 +40,13 @@ To validate you registry credentials are working with `helm`, we can use it to
40
40
show us the full list of values available to configure the chart:
41
41
42
42
``` 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} "
44
45
```
45
46
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
+
46
50
### 2) Obtaining TLSPK agent credentials:
47
51
48
52
Set the following environments variables for ease of installation:
@@ -81,7 +85,7 @@ Install the chart with the basic configuration:
81
85
82
86
``` shell
83
87
helm 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 \
85
89
--registry-config " ${TLSPK_DOCKER_CONFIG_FILE} " \
86
90
--set config.organisation=" ${TLSPK_ORG} " \
87
91
--set config.cluster=" ${TLSPK_CLUSTER_NAME} "
@@ -100,7 +104,7 @@ credential, read from the environment variable just set:
100
104
101
105
``` shell
102
106
helm 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 \
104
108
--registry-config " ${TLSPK_DOCKER_CONFIG_FILE} " \
105
109
--set config.organisation=" ${TLSPK_ORG} " \
106
110
--set config.cluster=" ${TLSPK_CLUSTER_NAME} " \
0 commit comments