Browse Source
Download containers and save all
Download containers and save all
Move version/repo vars to download role. Add container to download params, which overrides url/source_url, if enabled. Fix networking plugins download depending on kube_network_plugin. Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>pull/488/head
12 changed files with 98 additions and 41 deletions
Split View
Diff Options
-
53roles/download/defaults/main.yml
-
34roles/download/tasks/main.yml
-
8roles/etcd/defaults/main.yml
-
5roles/etcd/meta/main.yml
-
3roles/kubernetes/master/defaults/main.yml
-
4roles/kubernetes/master/meta/main.yml
-
3roles/kubernetes/node/defaults/main.yml
-
4roles/kubernetes/node/meta/main.yml
-
6roles/network_plugin/calico/defaults/main.yml
-
6roles/network_plugin/calico/meta/main.yml
-
7roles/network_plugin/flannel/defaults/main.yml
-
6roles/network_plugin/flannel/meta/main.yml
@ -1,10 +1,2 @@ |
|||
--- |
|||
etcd_version: v3.0.6 |
|||
etcd_bin_dir: "{{ local_release_dir }}/etcd/etcd-{{ etcd_version }}-linux-amd64/" |
|||
|
|||
# Possible values: host, docker |
|||
etcd_deployment_type: "docker" |
|||
|
|||
|
|||
etcd_image_repo: "quay.io/coreos/etcd" |
|||
etcd_image_tag: "{{ etcd_version }}" |
@ -1,4 +1,4 @@ |
|||
--- |
|||
dependencies: |
|||
- role: download # For kube_version variable |
|||
file: "{{ downloads.nothing }}" |
|||
- role: download |
|||
file: "{{ downloads.hyperkube }}" |
@ -1,5 +1,5 @@ |
|||
--- |
|||
dependencies: |
|||
- role: download #For kube_version |
|||
file: "{{ downloads.nothing }}" |
|||
- role: download |
|||
file: "{{ downloads.hyperkube }}" |
|||
- role: kubernetes/secrets |
@ -0,0 +1,6 @@ |
|||
--- |
|||
dependencies: |
|||
- role: download |
|||
file: "{{ downloads.flannel_server_helper }}" |
|||
- role: download |
|||
file: "{{ downloads.flannel }}" |
Write
Preview
Loading…
Cancel
Save