sloop/helm/sloop
Tristan Keen 1c49d1c5a4
Add helm options for config, pullPolicy and apiGroups (#154)
* Add helm options for config, pullPolicy and apiGroups

* Default imagePullPolicy to IfNotPresent
2021-05-20 15:17:10 -07:00
..
templates Add helm options for config, pullPolicy and apiGroups (#154) 2021-05-20 15:17:10 -07:00
.helmignore Move chart files to sloop folder (#28) 2019-10-10 16:17:57 -07:00
Chart.yaml Add new logo (#53) 2019-11-04 10:34:57 -08:00
README.md [helm/README] markdown title fix (#126) 2020-09-09 10:59:18 -07:00
values.yaml Add helm options for config, pullPolicy and apiGroups (#154) 2021-05-20 15:17:10 -07:00

README.md

Helm with tiller installation instructions

  1. cd ./helm
  2. helm install ./sloop

This is instructions for folks NOT using tiller (or Spinnaker) for deployment

  1. Build image and tag, and replace the current ones in values.yaml, we are working on a common image for people to use, it will be release in a few days.
  2. (Optional) Create a namespace in your cluster for sloop to run if you dont have any yet, for example: kubectl create namespace sloop
  3. (Optional) Examines a chart for possible issues: helm lint .
  4. Validate helm chart in local when making any helm changes:helm template .
  5. Write to yaml file: helm template . --namespace sloop> sloop-test.yaml
  6. Apply the yaml file in cluster: kubectl -n sloop apply -f sloop-test.yaml
  7. Check if the service is running: kubectl -n sloop get pods
  8. (Optional) Use port-forward for debugging: kubectl port-forward -n sloop service/sloop 8080:80
  9. In your browser, hit localhost:8080 to see the result, you can use sloop test data to check the view

SloopTestData