-
Notifications
You must be signed in to change notification settings - Fork 0
Setup
Piotr Puszkarski edited this page Aug 4, 2017
·
9 revisions
- Kubernetes
- Helm - https://github.com/kubernetes/helm
Download scalarm from https://github.com/Scalarm/charts
- Init helm server using cmd:
helm init
- When tiller pod is ready use cmd:
#download dependencies - mongodb and redis
helm dep up scalarm
#run scalarm with its dependencies
helm install scalarm
#get ip from label "Node"
kubectl describe pod <scalarm-pod-name>
#get node port
kubectl describe svc <scalarm-service-name>
https://NODEIP:NODEPORT
#sign in with login and password from values.yaml
You can change env variables and values of dependencies in values.yaml.
Disable persistence in mongodb and redis:
mongodb:
persistence:
enabled: false
redis:
persistence:
enabled: false
Enable redis usePassword option:
redis:
usePassword: true