Skip to content

Commit 8731d57

Browse files
committed
adj readmes
1 parent 86868f4 commit 8731d57

File tree

2 files changed

+21
-44
lines changed

2 files changed

+21
-44
lines changed

sdx/README.md

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff 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

sdx/chart/sdx-edge/README.md

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)