UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 4e7eff7f authored by Kavitha Thulasiraman's avatar Kavitha Thulasiraman Committed by Micah Nagel
Browse files

add image pull policy

parent 869feb53
No related branches found
No related tags found
1 merge request!31add image pull policy
......@@ -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.11.3-bb.1]
### Changed
- Added image pull policy for the deployment
## [1.11.3-bb.0]
### Changed
- Updated to 1.11.3 operator version
......
# Istio Operator
# istio-operator
Istio operator, chart.
![Version: 1.11.3-bb.1](https://img.shields.io/badge/Version-1.11.3--bb.1-informational?style=flat-square)
Originaly sourced from [upstream](), and minimally modified.
Helm chart for deploying Istio operator
## Upstream Changes
## Upstream References
* optionally remove namespace deployment from chart with `.Values.createNamespace`
* add `imagePullSecrets` with `.Values.imagePullSecrets[]`
* <https://github.com/istio/istio/tree/master/operator>
## Iron Bank
## Learn More
* [Application Overview](docs/overview.md)
* [Other Documentation](docs/)
You can `pull` the registry1 image(s) [here](https://registry1.dso.mil/harbor/projects/3/repositories/opensource%2Fistio-1.7%2Foperator-1.7) and view the container approval [here](https://ironbank.dso.mil/ironbank/repomap/opensource/istio-1.7).
\ No newline at end of file
## Pre-Requisites
* Kubernetes Cluster deployed
* Kubernetes config installed in `~/.kube/config`
* Helm installed
Install Helm
https://helm.sh/docs/intro/install/
## Deployment
* Clone down the repository
* cd into directory
```bash
helm install istio-operator chart/
```
## Values
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| hub | string | `"registry1.dso.mil/ironbank/opensource/istio"` | |
| image | string | `"operator"` | |
| tag | string | `"1.11.3"` | |
| imagePullPolicy | string | `"IfNotPresent"` | |
| imagePullSecrets | list | `[]` | |
| operatorNamespace | string | `"istio-operator"` | |
| watchedNamespaces | string | `"istio-system"` | |
| waitForResourcesTimeout | string | `"300s"` | |
| enableCRDTemplates | bool | `false` | |
| revision | string | `""` | |
| operator.resources.limits.cpu | string | `"200m"` | |
| operator.resources.limits.memory | string | `"256Mi"` | |
| operator.resources.requests.cpu | string | `"200m"` | |
| operator.resources.requests.memory | string | `"256Mi"` | |
| createNamespace | bool | `true` | |
| nodeSelector | object | `{}` | |
| affinity | object | `{}` | |
| monitoring.enabled | bool | `false` | |
| networkPolicies.enabled | bool | `false` | |
| networkPolicies.controlPlaneCidr | string | `"0.0.0.0/0"` | |
## Contributing
Please see the [contributing guide](./CONTRIBUTING.md) if you are interested in contributing.
apiVersion: v1
name: istio-operator
version: 1.11.3-bb.0
version: 1.11.3-bb.1
tillerVersion: ">=2.7.2"
description: Helm chart for deploying Istio operator
keywords:
......
......@@ -18,6 +18,7 @@ spec:
- name: istio-operator
## Added by Big Bang
image: {{.Values.hub}}/{{.Values.image | default "operator" }}:{{.Values.tag}}
imagePullPolicy: {{ .Values.imagePullPolicy }}
command:
- operator
- server
......
......@@ -2,6 +2,7 @@ hub: registry1.dso.mil/ironbank/opensource/istio
## Added by Big Bang
image: operator
tag: 1.11.3
imagePullPolicy: IfNotPresent
# ImagePullSecrets for operator ServiceAccount, list of secrets in the same namespace
# used to pull operator image. Must be set for any cluster configured with private docker registry.
......
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