Skip to content

Commit 38c5e08

Browse files
committed
fix: pin istio versions
Unpinned versions caused version mismatch in deployed helm charts and deployed container images.
1 parent 623525c commit 38c5e08

File tree

5 files changed

+5
-1
lines changed

5 files changed

+5
-1
lines changed

infrastructure/istio/helmfile.d/05-istio-base.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ releases:
1010
- name: istio-base
1111
namespace: istio-system
1212
chart: istio/base
13+
version: 1.12.5

infrastructure/istio/helmfile.d/06-istio-cni.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ releases:
1010
- name: istio-cni
1111
namespace: kube-system
1212
chart: istio/cni
13+
version: 1.12.5
1314
installed: {{ eq .Environment.Name "cni" | toYaml }}

infrastructure/istio/helmfile.d/10-istiod.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ releases:
1010
- name: istiod
1111
namespace: istio-system
1212
chart: istio/istiod
13+
version: 1.12.5
1314
wait: true
1415
values:
1516
- ./values/istiod.values.yaml.gotmpl

infrastructure/istio/helmfile.d/11-istio-ingress.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ releases:
1212
- name: istio-ingressgateway
1313
namespace: istio-ingress
1414
chart: istio/gateway
15+
version: 1.12.5
1516
# this fails the installation because helm waits for the loadbalancer to get an ip.
1617
# But the IP is not available until someone runs minikube tunnel
1718
#wait: true

infrastructure/istio/helmfile.d/values/istiod.values.yaml.gotmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
global:
2-
tag: 1.12.2
2+
tag: 1.12.5
33
tracer:
44
zipkin:
55
address: jaeger-collector.istio-system.svc.cluster.local:9411

0 commit comments

Comments
 (0)