-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathimages.list
41 lines (36 loc) · 965 Bytes
/
images.list
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
istio_images=(
# istio
istio/citadel:1.3.2
istio/galley:1.3.2
istio/kubectl:1.3.2
istio/mixer:1.3.2
istio/pilot:1.3.2
istio/proxyv2:1.3.2
istio/sidecar_injector:1.3.2
istio/proxy_init:1.3.2
istio/install-cni:1.3.2
grafana/grafana:6.1.6
jaegertracing/all-in-one:1.12
prom/prometheus:v2.8.0
quay.io/kiali/kiali:v1.4
# istio demo: bookinfo
istio/examples-bookinfo-details-v1:1.15.0
istio/examples-bookinfo-productpage-v1:1.15.0
istio/examples-bookinfo-ratings-v1:1.15.0
istio/examples-bookinfo-reviews-v1:1.15.0
istio/examples-bookinfo-reviews-v2:1.15.0
istio/examples-bookinfo-reviews-v3:1.15.0
)
ingress_images=(
# ingress
quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.26.1
k8s.gcr.io/defaultbackend-amd64:1.5
)
images+=(${istio_images[@]})
images+=(${ingress_images[@]})
# Add your own images here, e.g.
# my_images=(
# busybox
# )
# Then, append to images array
# images+=(${my_images[@]})