UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit dbb80d2c authored by Micah Nagel's avatar Micah Nagel
Browse files

Merge branch 'tid' into 'main'

Add TID support

See merge request platform-one/big-bang/apps/core/istio-operator!42
parents 22483396 20b4f110
No related branches found
No related tags found
1 merge request!42Add TID support
Pipeline #728023 passed with warnings
......@@ -3,6 +3,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.13.1-bb.1]
### Changed
- Add TID support
## [1.13.1-bb.0]
### Changed
- Updated kptfile
......
# istio-operator
![Version: 1.13.1-bb.0](https://img.shields.io/badge/Version-1.13.1--bb.0-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square)
![Version: 1.13.1-bb.1](https://img.shields.io/badge/Version-1.13.1--bb.1-informational?style=flat-square) ![AppVersion: 1.13.1](https://img.shields.io/badge/AppVersion-1.13.1-informational?style=flat-square)
Helm chart for deploying Istio operator
......@@ -37,6 +37,9 @@ helm install istio-operator chart/
| hub | string | `"registry1.dso.mil/ironbank/opensource/istio"` | |
| image | string | `"operator"` | |
| tag | string | `"1.13.1"` | |
| enterprise | bool | `false` | Tetrate Istio Distribution - Tetrate provides FIPs verified Istio and Envoy software and support, validated through the FIPs Boring Crypto module. Find out more from Tetrate - https://www.tetrate.io/tetrate-istio-subscription |
| tidHub | string | `"registry1.dso.mil/ironbank/tetrate/istio"` | |
| tidTag | string | `"1.12.4-tetratefips-v0"` | |
| imagePullPolicy | string | `"IfNotPresent"` | |
| imagePullSecrets | list | `[]` | |
| watchedNamespaces | string | `"istio-system"` | |
......
apiVersion: v1
name: istio-operator
version: 1.13.1-bb.0
version: 1.13.1-bb.1
appVersion: 1.13.1
tillerVersion: ">=2.7.2"
description: Helm chart for deploying Istio operator
......@@ -14,3 +14,4 @@ icon: https://istio.io/latest/favicons/android-192x192.png
annotations:
bigbang.dev/applicationVersions: |
- Istio Operator: 1.13.1
- Tetrate Istio Distro Operator: 1.12.4
......@@ -24,7 +24,11 @@ spec:
containers:
- name: istio-operator
## Added by Big Bang
{{- if .Values.enterprise }}
image: {{.Values.tidHub}}/{{.Values.image | default "operator" }}:{{.Values.tidTag}}
{{ else }}
image: {{.Values.hub}}/{{.Values.image | default "operator" }}:{{.Values.tag}}
{{- end }}
command:
- operator
- server
......
......@@ -2,6 +2,14 @@ hub: registry1.dso.mil/ironbank/opensource/istio
## Added by Big Bang
image: operator
tag: 1.13.1
# -- Tetrate Istio Distribution - Tetrate provides FIPs verified Istio and Envoy software and support,
# validated through the FIPs Boring Crypto module.
# Find out more from Tetrate - https://www.tetrate.io/tetrate-istio-subscription
enterprise: false
tidHub: registry1.dso.mil/ironbank/tetrate/istio
tidTag: 1.12.4-tetratefips-v0
imagePullPolicy: IfNotPresent
# ImagePullSecrets for operator ServiceAccount, list of secrets in the same namespace
......
registry1.dso.mil/ironbank/tetrate/istio/operator:1.12.4-tetratefips-v0
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