Add NATS streaming image tag (#2234)

Creates reproducible builds by locking NATS streaming to a specific
version
This commit is contained in:
Dylan Arbour
2021-10-22 10:57:28 +05:30
committed by GitHub
parent 178cdd42b7
commit 3efa3bbce9
2 changed files with 3 additions and 2 deletions
@@ -25,7 +25,7 @@ spec:
serviceAccount: fission-nats-streaming
containers:
- name: nats-streaming
image: {{ .Values.nats.streamingserver.image | quote }}
image: "{{ .Values.nats.streamingserver.image }}:{{ .Values.nats.streamingserver.tag }}"
imagePullPolicy: {{ .Values.pullPolicy }}
args: [
"--cluster_id", "{{ .Values.nats.clusterID }}",
@@ -107,4 +107,4 @@ spec:
{{- if .Values.extraCoreComponentPodConfig }}
{{ toYaml .Values.extraCoreComponentPodConfig | indent 6 -}}
{{- end }}
{{- end }}
{{- end }}
+1
View File
@@ -168,6 +168,7 @@ nats:
# The image to use for NATS streaming server
streamingserver:
image: nats-streaming
tag: "0.23.0"
## Port at which NATS streaming service should be exposed
## (only if nats enabled and not external)