diff options
author | 2019-08-05 15:35:41 -0700 | |
---|---|---|
committer | 2019-08-05 15:43:14 -0700 | |
commit | b54f9760780c88ecd5bb8ae24766849122f871df (patch) | |
tree | d365c174bc42429bb2426301d74252a801e5f190 /deployments/helm/servicemesh/istio-operator/values.yaml | |
parent | 4fb6acf5a720a0554c08a6f1d3526271b6317cdb (diff) |
Helm chart to deploy Istio-operator
Istio-operator is required to manage the
lifecycle and deployments of Istio
Issue-ID: MULTICLOUD-710
Signed-off-by: Pramod <pramod.raghavendra.jayathirth@intel.com>
Change-Id: Ifd2d05e790148096b5c0b454208e233aa5a299f9
Diffstat (limited to 'deployments/helm/servicemesh/istio-operator/values.yaml')
-rw-r--r-- | deployments/helm/servicemesh/istio-operator/values.yaml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/deployments/helm/servicemesh/istio-operator/values.yaml b/deployments/helm/servicemesh/istio-operator/values.yaml new file mode 100644 index 00000000..cb937c11 --- /dev/null +++ b/deployments/helm/servicemesh/istio-operator/values.yaml @@ -0,0 +1,40 @@ + + +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +operator: + image: + repository: banzaicloud/istio-operator + tag: 0.2.1 + pullPolicy: IfNotPresent + resources: + limits: + cpu: 200m + memory: 256Mi + requests: + cpu: 100m + memory: 128Mi + +istioVersion: 1.2 + +## Prometheus Metrics +prometheusMetrics: + enabled: false +# Enable or disable the auth proxy (https://github.com/brancz/kube-rbac-proxy) +# which protects your /metrics endpoint. + authProxy: + enabled: false + +## Role Based Access +## Ref: https://kubernetes.io/docs/admin/authorization/rbac/ +## +rbac: + enabled: true + +nameOverride: "" +fullnameOverride: "" + +nodeSelector: {} +tolerations: [] +affinity: {} |