aboutsummaryrefslogtreecommitdiffstats
path: root/deployments/helm/servicemesh/istio
diff options
context:
space:
mode:
authorPramod <pramod.raghavendra.jayathirth@intel.com>2019-10-23 16:14:19 -0700
committerPramod <pramod.raghavendra.jayathirth@intel.com>2019-10-25 13:57:45 -0700
commitccbd9d767ad08455382e2cec91e0bfc4ed7ea942 (patch)
treece30f65b5cbf585f25cca57b9888e2378a8eb542 /deployments/helm/servicemesh/istio
parenteaa37b56ecb872c85e1ac1f7c5ca8398ae340f23 (diff)
Upgrade istio-operator
Issue-ID: AAF-1023 Signed-off-by: Pramod <pramod.raghavendra.jayathirth@intel.com> Change-Id: I863a06ee8f504febb822d02c054860065ad888b9
Diffstat (limited to 'deployments/helm/servicemesh/istio')
-rw-r--r--deployments/helm/servicemesh/istio/README.md2
-rw-r--r--deployments/helm/servicemesh/istio/istio-instance/templates/istio-sds.yaml3
-rw-r--r--deployments/helm/servicemesh/istio/istio-instance/values.yaml12
3 files changed, 9 insertions, 8 deletions
diff --git a/deployments/helm/servicemesh/istio/README.md b/deployments/helm/servicemesh/istio/README.md
index 8fcba4f8..868c116a 100644
--- a/deployments/helm/servicemesh/istio/README.md
+++ b/deployments/helm/servicemesh/istio/README.md
@@ -17,4 +17,6 @@
# Steps for Instaling Istio with Istio- Operator
# Step 1 - Add the helm chart to install Istio in sds configuration
+# NOTE - Edit the namespaces in istio/istio-instance/values.yaml
+# to enable istio-injection
helm install istio-instance --name istio --namespace istio-system
diff --git a/deployments/helm/servicemesh/istio/istio-instance/templates/istio-sds.yaml b/deployments/helm/servicemesh/istio/istio-instance/templates/istio-sds.yaml
index 8c440a4e..4a8b11b2 100644
--- a/deployments/helm/servicemesh/istio/istio-instance/templates/istio-sds.yaml
+++ b/deployments/helm/servicemesh/istio/istio-instance/templates/istio-sds.yaml
@@ -29,8 +29,7 @@ spec:
sds:
enabled: {{ .Values.spec.sds.enabled }}
udsPath: {{ .Values.spec.sds.udsPath | quote }}
- useTrustworthyJwt: {{ .Values.spec.sds.useTrustworthyJwt }}
- useNormalJwt: {{ .Values.spec.sds.useNormalJwt }}
+ tokenAudience: {{ .Values.spec.sds.tokenAudience | quote}}
gateways:
enabled: {{ .Values.spec.gateways.enabled }}
ingress:
diff --git a/deployments/helm/servicemesh/istio/istio-instance/values.yaml b/deployments/helm/servicemesh/istio/istio-instance/values.yaml
index 091999ac..dd77ef1b 100644
--- a/deployments/helm/servicemesh/istio/istio-instance/values.yaml
+++ b/deployments/helm/servicemesh/istio/istio-instance/values.yaml
@@ -15,25 +15,25 @@
# * limitations under the License.
# */
#Declare variables to be passed into Istio SDS template file.
+#NOTE : EDit the namespace for which you need Istio injection
metadata:
name: "istio-sample"
spec:
- version: "1.2.2"
+ version: "1.3.3"
mtls: true
autoInjectionNamespaces:
- -
+ - "default"
sds:
enabled: true
udsPath: "unix:/var/run/sds/uds_path"
- useTrustworthyJwt: false
- useNormalJwt: true
+ tokenAudience: "istio-ca"
gateways:
enabled: true
ingress:
enabled: true
sds:
enabled: true
- image: "docker.io/istio/node-agent-k8s:1.2.2"
+ image: "docker.io/istio/node-agent-k8s:1.3.3"
nodeAgent:
enabled: true
- image : "docker.io/istio/node-agent-k8s:1.2.2"
+ image : "docker.io/istio/node-agent-k8s:1.3.3"