opensergo-control-plane
opensergo-control-plane copied to clipboard
Add Helm Chart deployment suite
Signed-off-by: Jiangnan Jia [email protected]
Describe what this PR does / why we need it
Support Helm Chart deploy
Does this pull request fix one issue?
Fixes #40
Describe how you did it
Add Helm Chart deployment suite
Describe how to verify it
- finish the
init
step by exec:wget --no-check-certificate https://raw.githubusercontent.com/opensergo/opensergo-control-plane/main/cmd/init/init.sh && chmod +x init.sh && ./init.sh
- go into directory
cmd/install/helm
, and exec:helm install opensergo-control-plane ./opensergo-control-plane
Special notes for reviews
ClusterIP
is the default mode of Service, you can change mode to NodePort
or LoadBalancer
to expose this Service.
If you want to expose this Service, you can modify file cmd/install/helm/opensergo-control-plane/values.yaml
cmd/install/helm/opensergo-control-plane/values.yaml
service:
type: NodePort # or LoadBalancer