Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kubespray
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
Kubespray
Commits
428a554d
Commit
428a554d
authored
Apr 3, 2018
by
Wong Hoi Sing Edison
Browse files
Options
Downloads
Patches
Plain Diff
istio: container download related things should defined in the download role
parent
6f3ff70b
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
roles/download/defaults/main.yml
+80
-0
80 additions, 0 deletions
roles/download/defaults/main.yml
roles/kubernetes-apps/istio/defaults/main.yml
+0
-30
0 additions, 30 deletions
roles/kubernetes-apps/istio/defaults/main.yml
with
80 additions
and
30 deletions
roles/download/defaults/main.yml
+
80
−
0
View file @
428a554d
...
@@ -70,6 +70,22 @@ calico_policy_image_repo: "quay.io/calico/kube-controllers"
...
@@ -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:
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
roles/kubernetes-apps/istio/defaults/main.yml
+
0
−
30
View file @
428a554d
---
---
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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment