|
|
@@ -5,27 +5,27 @@ This is a MVP to get an Helm chart for Hue.
|
|
|
|
|
|
## Install
|
|
|
|
|
|
-```
|
|
|
-cd tools/kubernetes/helm/hue
|
|
|
-```
|
|
|
+ cd tools/kubernetes/helm/hue
|
|
|
|
|
|
If needed, copy [values.yaml](values.yaml) and edit and run:
|
|
|
|
|
|
-```
|
|
|
-helm install hue -f values.yaml
|
|
|
-```
|
|
|
+ cp config.yaml values.yaml
|
|
|
+ helm install hue -f values.yaml -n hue
|
|
|
+
|
|
|
|
|
|
And follow-up the instructions printed on the screen.
|
|
|
|
|
|
-E.g. by default it comes with a temporary DB and ingres load balancer:
|
|
|
+Not that by default Hue comes with a temporary DB and ingress load balancer:
|
|
|
+
|
|
|
+ kubectl get pods
|
|
|
+ NAME READY STATUS RESTARTS AGE
|
|
|
+ hue-4n2ck 1/1 Running 0 3h
|
|
|
+ hue-postgres-5jg77 1/1 Running 0 12d
|
|
|
+ traefik-ingress-controller-6fbd76695d-nkxnz 1/1 Running 0 12d
|
|
|
+
|
|
|
+## Un-install
|
|
|
|
|
|
-```
|
|
|
-kubectl get pods
|
|
|
-NAME READY STATUS RESTARTS AGE
|
|
|
-hue-4n2ck 1/1 Running 0 3h
|
|
|
-hue-postgres-5jg77 1/1 Running 0 12d
|
|
|
-traefik-ingress-controller-6fbd76695d-nkxnz 1/1 Running 0 12d
|
|
|
-```
|
|
|
+ helm delete hue --purge
|
|
|
|
|
|
## Follow-ups
|
|
|
|