Browse Source

Fix skip_downloads condition.

pull/3075/head
Takashi Okamoto 6 years ago
parent
commit
82f9652fd8
3 changed files with 3 additions and 3 deletions
  1. 2
      cluster.yml
  2. 2
      scale.yml
  3. 2
      upgrade-cluster.yml

2
cluster.yml

@ -37,7 +37,7 @@
- role: rkt
tags: rkt
when: "'rkt' in [etcd_deployment_type, kubelet_deployment_type, vault_deployment_type]"
- { role: download, tags: download, when: "skip_downloads == 'false'" }
- { role: download, tags: download, when: "not skip_downloads" }
environment: "{{proxy_env}}"
- hosts: etcd:k8s-cluster:vault:calico-rr

2
scale.yml

@ -32,7 +32,7 @@
- role: rkt
tags: rkt
when: "'rkt' in [etcd_deployment_type, kubelet_deployment_type, vault_deployment_type]"
- { role: download, tags: download, when: "skip_downloads == 'false'" }
- { role: download, tags: download, when: "not skip_downloads" }
- { role: etcd, tags: etcd, etcd_cluster_setup: false }
- { role: vault, tags: vault, when: "cert_management == 'vault'"}
- { role: kubernetes/node, tags: node }

2
upgrade-cluster.yml

@ -38,7 +38,7 @@
- role: rkt
tags: rkt
when: "'rkt' in [etcd_deployment_type, kubelet_deployment_type, vault_deployment_type]"
- { role: download, tags: download, when: "skip_downloads == 'false'" }
- { role: download, tags: download, when: "not skip_downloads" }
environment: "{{proxy_env}}"
- hosts: etcd:k8s-cluster:vault

Loading…
Cancel
Save