Merge pull request #2590 from hswong3i/istio-download
istio: container download related things should defined in the download role
This commit is contained in:
commit
6567b8e012
2 changed files with 80 additions and 30 deletions
|
@ -70,6 +70,22 @@ calico_policy_image_repo: "quay.io/calico/kube-controllers"
|
||||||
calico_policy_image_tag: "{{ calico_policy_version }}"
|
calico_policy_image_tag: "{{ calico_policy_version }}"
|
||||||
calico_rr_image_repo: "quay.io/calico/routereflector"
|
calico_rr_image_repo: "quay.io/calico/routereflector"
|
||||||
calico_rr_image_tag: "{{ calico_rr_version }}"
|
calico_rr_image_tag: "{{ calico_rr_version }}"
|
||||||
|
istio_proxy_image_repo: docker.io/istio/proxy
|
||||||
|
istio_proxy_image_tag: "{{ istio_version }}"
|
||||||
|
istio_proxy_init_image_repo: docker.io/istio/proxy_init
|
||||||
|
istio_proxy_init_image_tag: "{{ istio_version }}"
|
||||||
|
istio_ca_image_repo: docker.io/istio/istio-ca
|
||||||
|
istio_ca_image_tag: "{{ istio_version }}"
|
||||||
|
istio_mixer_image_repo: docker.io/istio/mixer
|
||||||
|
istio_mixer_image_tag: "{{ istio_version }}"
|
||||||
|
istio_pilot_image_repo: docker.io/istio/pilot
|
||||||
|
istio_pilot_image_tag: "{{ istio_version }}"
|
||||||
|
istio_proxy_debug_image_repo: docker.io/istio/proxy_debug
|
||||||
|
istio_proxy_debug_image_tag: "{{ istio_version }}"
|
||||||
|
istio_sidecar_initializer_image_repo: docker.io/istio/sidecar_initializer
|
||||||
|
istio_sidecar_initializer_image_tag: "{{ istio_version }}"
|
||||||
|
istio_statsd_image_repo: prom/statsd-exporter
|
||||||
|
istio_statsd_image_tag: latest
|
||||||
hyperkube_image_repo: "gcr.io/google-containers/hyperkube"
|
hyperkube_image_repo: "gcr.io/google-containers/hyperkube"
|
||||||
hyperkube_image_tag: "{{ kube_version }}"
|
hyperkube_image_tag: "{{ kube_version }}"
|
||||||
pod_infra_image_repo: "gcr.io/google_containers/pause-amd64"
|
pod_infra_image_repo: "gcr.io/google_containers/pause-amd64"
|
||||||
|
@ -199,6 +215,70 @@ downloads:
|
||||||
mode: "0755"
|
mode: "0755"
|
||||||
groups:
|
groups:
|
||||||
- kube-master
|
- kube-master
|
||||||
|
istio_proxy:
|
||||||
|
enabled: "{{ istio_enabled }}"
|
||||||
|
container: true
|
||||||
|
repo: "{{ istio_proxy_image_repo }}"
|
||||||
|
tag: "{{ istio_proxy_image_tag }}"
|
||||||
|
sha256: "{{ istio_proxy_digest_checksum|default(None) }}"
|
||||||
|
groups:
|
||||||
|
- kube-node
|
||||||
|
istio_proxy_init:
|
||||||
|
enabled: "{{ istio_enabled }}"
|
||||||
|
container: true
|
||||||
|
repo: "{{ istio_proxy_init_image_repo }}"
|
||||||
|
tag: "{{ istio_proxy_init_image_tag }}"
|
||||||
|
sha256: "{{ istio_proxy_init_digest_checksum|default(None) }}"
|
||||||
|
groups:
|
||||||
|
- kube-node
|
||||||
|
istio_ca:
|
||||||
|
enabled: "{{ istio_enabled }}"
|
||||||
|
container: true
|
||||||
|
repo: "{{ istio_ca_image_repo }}"
|
||||||
|
tag: "{{ istio_ca_image_tag }}"
|
||||||
|
sha256: "{{ istio_ca_digest_checksum|default(None) }}"
|
||||||
|
groups:
|
||||||
|
- kube-node
|
||||||
|
istio_mixer:
|
||||||
|
enabled: "{{ istio_enabled }}"
|
||||||
|
container: true
|
||||||
|
repo: "{{ istio_mixer_image_repo }}"
|
||||||
|
tag: "{{ istio_mixer_image_tag }}"
|
||||||
|
sha256: "{{ istio_mixer_digest_checksum|default(None) }}"
|
||||||
|
groups:
|
||||||
|
- kube-node
|
||||||
|
istio_pilot:
|
||||||
|
enabled: "{{ istio_enabled }}"
|
||||||
|
container: true
|
||||||
|
repo: "{{ istio_pilot_image_repo }}"
|
||||||
|
tag: "{{ istio_pilot_image_tag }}"
|
||||||
|
sha256: "{{ istio_pilot_digest_checksum|default(None) }}"
|
||||||
|
groups:
|
||||||
|
- kube-node
|
||||||
|
istio_proxy_debug:
|
||||||
|
enabled: "{{ istio_enabled }}"
|
||||||
|
container: true
|
||||||
|
repo: "{{ istio_proxy_debug_image_repo }}"
|
||||||
|
tag: "{{ istio_proxy_debug_image_tag }}"
|
||||||
|
sha256: "{{ istio_proxy_debug_digest_checksum|default(None) }}"
|
||||||
|
groups:
|
||||||
|
- kube-node
|
||||||
|
istio_sidecar_initializer:
|
||||||
|
enabled: "{{ istio_enabled }}"
|
||||||
|
container: true
|
||||||
|
repo: "{{ istio_sidecar_initializer_image_repo }}"
|
||||||
|
tag: "{{ istio_sidecar_initializer_image_tag }}"
|
||||||
|
sha256: "{{ istio_sidecar_initializer_digest_checksum|default(None) }}"
|
||||||
|
groups:
|
||||||
|
- kube-node
|
||||||
|
istio_statsd:
|
||||||
|
enabled: "{{ istio_enabled }}"
|
||||||
|
container: true
|
||||||
|
repo: "{{ istio_statsd_image_repo }}"
|
||||||
|
tag: "{{ istio_statsd_image_tag }}"
|
||||||
|
sha256: "{{ istio_statsd_digest_checksum|default(None) }}"
|
||||||
|
groups:
|
||||||
|
- kube-node
|
||||||
hyperkube:
|
hyperkube:
|
||||||
enabled: true
|
enabled: true
|
||||||
container: true
|
container: true
|
||||||
|
|
|
@ -1,32 +1,2 @@
|
||||||
---
|
---
|
||||||
istio_enabled: false
|
|
||||||
|
|
||||||
istio_namespace: istio-system
|
istio_namespace: istio-system
|
||||||
istio_version: "0.2.6"
|
|
||||||
|
|
||||||
istioctl_download_url: "https://storage.googleapis.com/istio-release/releases/{{ istio_version }}/istioctl/istioctl-linux"
|
|
||||||
istioctl_checksum: fd703063c540b8c0ab943f478c05ab257d88ae27224c746a27d0526ddbf7c370
|
|
||||||
|
|
||||||
istio_proxy_image_repo: docker.io/istio/proxy
|
|
||||||
istio_proxy_image_tag: "{{ istio_version }}"
|
|
||||||
|
|
||||||
istio_proxy_init_image_repo: docker.io/istio/proxy_init
|
|
||||||
istio_proxy_init_image_tag: "{{ istio_version }}"
|
|
||||||
|
|
||||||
istio_ca_image_repo: docker.io/istio/istio-ca
|
|
||||||
istio_ca_image_tag: "{{ istio_version }}"
|
|
||||||
|
|
||||||
istio_mixer_image_repo: docker.io/istio/mixer
|
|
||||||
istio_mixer_image_tag: "{{ istio_version }}"
|
|
||||||
|
|
||||||
istio_pilot_image_repo: docker.io/istio/pilot
|
|
||||||
istio_pilot_image_tag: "{{ istio_version }}"
|
|
||||||
|
|
||||||
istio_proxy_debug_image_repo: docker.io/istio/proxy_debug
|
|
||||||
istio_proxy_debug_image_tag: "{{ istio_version }}"
|
|
||||||
|
|
||||||
istio_sidecar_initializer_image_repo: docker.io/istio/sidecar_initializer
|
|
||||||
istio_sidecar_initializer_image_tag: "{{ istio_version }}"
|
|
||||||
|
|
||||||
istio_statsd_image_repo: prom/statsd-exporter
|
|
||||||
istio_statsd_image_tag: latest
|
|
||||||
|
|
Loading…
Reference in a new issue