UNCLASSIFIED

Commits (4)
...@@ -2,6 +2,14 @@ ...@@ -2,6 +2,14 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.10.3-bb.0]
### Changed
- Update to Istio 1.10.3
## [1.9.7-bb.1]
### Added
- Default configuration to hold application start until istio proxy is ready
## [1.9.7-bb.0] ## [1.9.7-bb.0]
### Changed ### Changed
- Update to Istio 1.9.7 - Update to Istio 1.9.7
......
apiVersion: v2 apiVersion: v2
name: istio name: istio
version: 1.9.7-bb.0 version: 1.10.3-bb.0
...@@ -78,6 +78,7 @@ spec: ...@@ -78,6 +78,7 @@ spec:
tracing: tracing:
sampling: {{ .Values.tracing.sampling }} sampling: {{ .Values.tracing.sampling }}
zipkinAddress: {{ .Values.tracing.address }}:{{.Values.tracing.port}} zipkinAddress: {{ .Values.tracing.address }}:{{.Values.tracing.port}}
holdApplicationUntilProxyStarts: true
{{- if .Values.meshConfig }} {{- if .Values.meshConfig }}
{{- toYaml .Values.meshConfig | nindent 4 }} {{- toYaml .Values.meshConfig | nindent 4 }}
{{- end }} {{- end }}
......
...@@ -4,7 +4,7 @@ profile: default ...@@ -4,7 +4,7 @@ profile: default
# The hub to use for the image (note: the image is built as ".Values.hub/<component>:.Values.tag" # The hub to use for the image (note: the image is built as ".Values.hub/<component>:.Values.tag"
hub: registry1.dso.mil/ironbank/opensource/istio hub: registry1.dso.mil/ironbank/opensource/istio
# The tag to use for the image # The tag to use for the image
tag: 1.9.7 tag: 1.10.3
# The domain to use for the default gateway # The domain to use for the default gateway
domain: bigbang.dev domain: bigbang.dev
...@@ -139,8 +139,8 @@ tracing: ...@@ -139,8 +139,8 @@ tracing:
cni: cni:
image: image:
name: install-cni name: install-cni
hub: registry1.dso.mil/ironbank/opensource/istio/install-cni hub: registry1.dso.mil/ironbank/opensource/istio
tag: 1.9.7 tag: 1.10.3
# k8s pod annotations. https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ # k8s pod annotations. https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
podAnnotations: {} podAnnotations: {}
# k8s nodeSelector. https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector # k8s nodeSelector. https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
......