2017-08-24 09:09:52 +00:00
|
|
|
---
|
2017-03-17 11:56:25 +00:00
|
|
|
helm_enabled: false
|
2017-04-21 02:51:27 +00:00
|
|
|
|
|
|
|
# specify a dir and attach it to helm for HELM_HOME.
|
|
|
|
helm_home_dir: "/root/.helm"
|
2017-11-03 07:09:24 +00:00
|
|
|
|
|
|
|
# Deployment mode: host or docker
|
2017-11-29 19:52:54 +00:00
|
|
|
helm_deployment_type: host
|
2017-11-28 18:33:57 +00:00
|
|
|
|
|
|
|
# Do not download the local repository cache on helm init
|
|
|
|
helm_skip_refresh: false
|
|
|
|
|
2018-09-06 15:14:18 +00:00
|
|
|
# Secure Tiller installation with TLS
|
|
|
|
tiller_enable_tls: false
|
|
|
|
helm_config_dir: "{{ kube_config_dir }}/helm"
|
|
|
|
helm_script_dir: "{{ bin_dir }}/helm-scripts"
|
|
|
|
|
|
|
|
# Store tiller release information as Secret instead of a ConfigMap
|
|
|
|
tiller_secure_release_info: false
|
|
|
|
|
|
|
|
# Where private root key will be secured for TLS
|
|
|
|
helm_tiller_cert_dir: "{{ helm_config_dir }}/ssl"
|
|
|
|
tiller_tls_cert: "{{ helm_tiller_cert_dir }}/tiller.pem"
|
|
|
|
tiller_tls_key: "{{ helm_tiller_cert_dir }}/tiller-key.pem"
|
|
|
|
tiller_tls_ca_cert: "{{ helm_tiller_cert_dir }}/ca.pem"
|
|
|
|
|
|
|
|
# Permission owner and group for helm client cert. Will be dependent on the helm_home_dir
|
|
|
|
helm_cert_group: root
|
|
|
|
helm_cert_owner: root
|
|
|
|
|
2017-11-28 18:33:57 +00:00
|
|
|
# Set URL for stable repository
|
|
|
|
# helm_stable_repo_url: "https://kubernetes-charts.storage.googleapis.com"
|
|
|
|
|
2018-08-29 09:20:41 +00:00
|
|
|
# Namespace for the Tiller Deployment.
|
|
|
|
tiller_namespace: kube-system
|
|
|
|
|
2017-11-28 18:33:57 +00:00
|
|
|
# Set node selector options for Tiller Deployment manifest.
|
|
|
|
# tiller_node_selectors: "key1=val1,key2=val2"
|
|
|
|
|
|
|
|
# Override values for the Tiller Deployment manifest.
|
|
|
|
# tiller_override: "key1=val1,key2=val2"
|
2018-06-15 10:50:18 +00:00
|
|
|
|
|
|
|
# Limit the maximum number of revisions saved per release. Use 0 for no limit.
|
|
|
|
# tiller_max_history: 0
|