2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# File 'manifests/params.pp', line 2
class helm::params {
$canary_image = false
$client_only = false
$debug = false
$dry_run = false
$env = [ 'HOME=/root', 'KUBECONFIG=/etc/kubernetes/admin.conf']
$home = undef
$host = undef
$init = true
$install_path = '/usr/bin'
$kube_context = undef
$local_repo_url = undef
$proxy = undef
$net_host = false
$node_selectors = undef
$overrides = undef
$path = [ '/bin','/usr/bin']
$service_account = 'tiller'
$skip_refresh = false
$stable_repo_url = undef
$tiller_image = undef
$tiller_namespaces = ['kube-system']
$tiller_tls = false
$tiller_tls_cert = undef
$tiller_tls_key = undef
$tiller_tls_verify = false
$tls_ca_cert = undef
$upgrade = false
$version = '2.7.2'
$archive_baseurl = 'https://kubernetes-helm.storage.googleapis.com'
}
|