UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit de2e8d93 authored by Cassie Souza's avatar Cassie Souza Committed by Michael McLeroy
Browse files

Allow for override of operator image name

parent a61d2de8
No related branches found
No related tags found
1 merge request!16Allow for override of operator image name
......@@ -2,6 +2,10 @@
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.9.7-bb.2]
### Added
- Added template value for istio operator image name
## [1.9.7-bb.1]
### Changed
- Updated resource request and limit to equal values for Guaranteed QOS
......
apiVersion: v1
name: istio-operator
version: 1.9.7-bb.1
version: 1.9.7-bb.2
tillerVersion: ">=2.7.2"
description: Helm chart for deploying Istio operator
keywords:
......
......@@ -16,7 +16,8 @@ spec:
serviceAccountName: istio-operator{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
containers:
- name: istio-operator
image: {{.Values.hub}}/operator:{{.Values.tag}}
## Added by Big Bang
image: {{.Values.hub}}/{{.Values.image | default "operator" }}:{{.Values.tag}}
command:
- operator
- server
......
hub: registry1.dso.mil/ironbank/opensource/istio
## Added by Big Bang
image: operator
tag: 1.9.7
# ImagePullSecrets for operator ServiceAccount, list of secrets in the same namespace
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment