Skip to content
Snippets Groups Projects
Commit 82f9652f authored by Takashi Okamoto's avatar Takashi Okamoto
Browse files

Fix skip_downloads condition.

parent 94ae945b
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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 }
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment