|
@@ -1,33 +1,26 @@
|
|
|
# Hue Chart
|
|
# Hue Chart
|
|
|
|
|
|
|
|
-This is a MVP to get an Helm chart for Hue.
|
|
|
|
|
|
|
+This is an Helm chart to easily start a Hue service.
|
|
|
|
|
|
|
|
|
|
|
|
|
## Install
|
|
## Install
|
|
|
|
|
|
|
|
cd tools/kubernetes/helm/hue
|
|
cd tools/kubernetes/helm/hue
|
|
|
|
|
|
|
|
-If needed, copy [values.yaml](values.yaml) and edit and run:
|
|
|
|
|
|
|
+View the configuration [hue/values.yaml](hue/values.yaml), edit if needed and run:
|
|
|
|
|
|
|
|
- cp config.yaml values.yaml
|
|
|
|
|
- helm install hue -f values.yaml -n hue
|
|
|
|
|
|
|
+ helm install hue -n hue
|
|
|
|
|
|
|
|
|
|
|
|
|
-And follow-up the instructions printed on the screen.
|
|
|
|
|
|
|
+And follow-up the instructions printed on the screen for conneting to Hue.
|
|
|
|
|
|
|
|
-Not that by default Hue comes with a temporary DB and ingress load balancer:
|
|
|
|
|
|
|
+By default you should see these running containers:
|
|
|
|
|
|
|
|
kubectl get pods
|
|
kubectl get pods
|
|
|
NAME READY STATUS RESTARTS AGE
|
|
NAME READY STATUS RESTARTS AGE
|
|
|
hue-4n2ck 1/1 Running 0 3h
|
|
hue-4n2ck 1/1 Running 0 3h
|
|
|
hue-postgres-5jg77 1/1 Running 0 12d
|
|
hue-postgres-5jg77 1/1 Running 0 12d
|
|
|
- traefik-ingress-controller-6fbd76695d-nkxnz 1/1 Running 0 12d
|
|
|
|
|
|
|
|
|
|
## Un-install
|
|
## Un-install
|
|
|
|
|
|
|
|
helm delete hue --purge
|
|
helm delete hue --purge
|
|
|
-
|
|
|
|
|
-## Follow-ups
|
|
|
|
|
-
|
|
|
|
|
-* Parameterize the Database
|
|
|
|
|
-* Productionize DB persistence
|
|
|