File tree Expand file tree Collapse file tree 2 files changed +21
-44
lines changed
Expand file tree Collapse file tree 2 files changed +21
-44
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,27 @@ Deploys a Kong Gateway data plane node configured for secure data exchange opera
2828
2929#### Installation
3030
31- ``` bash
32- helm install < release-name> ./chart/sdx-edge \
33- --set route.host=< your-edge-host> \
34- --set sdx_control_url=< control-plane-url> \
35- --set tls.client.bootstrap.token=< bootstrap-token> \
36- --set tls.client.cn=< client-cn>
31+ > ` TOKEN ` is a one-time-use token for calling the CA to get a new certificate for mTLS and signing
32+
33+ ``` sh
34+ export TOKEN=" <TOKEN>"
35+ export IP=" <INTERNET_FACING_IP]"
36+ export EDGE_ID=" <EDGE NAME>"
37+ export DOMAIN=" ${EDGE_ID} .servers.sdx"
38+
39+ helm upgrade --install ${EDGE_ID} \
40+ --set tls.client.bootstrap.token=${TOKEN} \
41+ --set tls.server.ip=${IP} \
42+ --set tls.client.cn=${DOMAIN} \
43+ --set route.host=${DOMAIN} \
44+ oci://ghcr.io/bcgov/aps-devops/sdx-edge:0.1.0
45+ ```
46+
47+ #### Development
48+
49+ ``` sh
50+ helm package sdx-edge
51+ helm push sdx-edge-0.1.0.tgz oci://ghcr.io/bcgov/aps-devops
3752```
3853
3954#### Configuration
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments