Unverified Commit d67dd3f9 by Denise Committed by GitHub

Merge pull request #145 from cbron/istio-1.4.3

Istio 1.4.3
parents c8153ba4 289fc752
apiVersion: v1 apiVersion: v1
appVersion: 1.4.2 appVersion: 1.4.3
description: Helm chart for all istio components description: Helm chart for all istio components
engine: gotpl engine: gotpl
icon: https://istio.io/favicons/android-192x192.png icon: https://istio.io/favicons/android-192x192.png
...@@ -14,4 +14,4 @@ name: rancher-istio ...@@ -14,4 +14,4 @@ name: rancher-istio
sources: sources:
- http://github.com/istio/istio - http://github.com/istio/istio
tillerVersion: '>=2.7.2-0' tillerVersion: '>=2.7.2-0'
version: 1.4.2 version: 1.4.3
...@@ -3,4 +3,4 @@ appVersion: 0.6.2 ...@@ -3,4 +3,4 @@ appVersion: 0.6.2
description: A Helm chart for Kubernetes description: A Helm chart for Kubernetes
name: certmanager name: certmanager
tillerVersion: '>=2.7.2' tillerVersion: '>=2.7.2'
version: 1.4.2 version: 1.4.3
apiVersion: v1 apiVersion: v1
appVersion: 1.4.2 appVersion: 1.4.3
description: Helm chart for galley deployment description: Helm chart for galley deployment
engine: gotpl engine: gotpl
icon: https://istio.io/favicons/android-192x192.png icon: https://istio.io/favicons/android-192x192.png
...@@ -10,4 +10,4 @@ name: galley ...@@ -10,4 +10,4 @@ name: galley
sources: sources:
- http://github.com/istio/istio - http://github.com/istio/istio
tillerVersion: '>=2.7.2' tillerVersion: '>=2.7.2'
version: 1.4.2 version: 1.4.3
apiVersion: v1 apiVersion: v1
appVersion: 1.4.2 appVersion: 1.4.3
description: Helm chart for deploying Istio gateways description: Helm chart for deploying Istio gateways
engine: gotpl engine: gotpl
icon: https://istio.io/favicons/android-192x192.png icon: https://istio.io/favicons/android-192x192.png
...@@ -12,4 +12,4 @@ name: gateways ...@@ -12,4 +12,4 @@ name: gateways
sources: sources:
- http://github.com/istio/istio - http://github.com/istio/istio
tillerVersion: '>=2.7.2' tillerVersion: '>=2.7.2'
version: 1.4.2 version: 1.4.3
...@@ -257,7 +257,7 @@ spec: ...@@ -257,7 +257,7 @@ spec:
- name: ISTIO_META_WORKLOAD_NAME - name: ISTIO_META_WORKLOAD_NAME
value: {{ $key }} value: {{ $key }}
- name: ISTIO_META_OWNER - name: ISTIO_META_OWNER
value: kubernetes://api/apps/v1/namespaces/{{ $spec.namespace | default $.Release.Namespace }}/deployments/{{ $key }} value: kubernetes://apis/apps/v1/namespaces/{{ $spec.namespace | default $.Release.Namespace }}/deployments/{{ $key }}
{{- if $.Values.global.meshID }} {{- if $.Values.global.meshID }}
- name: ISTIO_META_MESH_ID - name: ISTIO_META_MESH_ID
value: "{{ $.Values.global.meshID }}" value: "{{ $.Values.global.meshID }}"
......
apiVersion: v1 apiVersion: v1
appVersion: 1.4.2 appVersion: 1.4.3
description: A Helm chart for Kubernetes description: A Helm chart for Kubernetes
name: grafana name: grafana
tillerVersion: '>=2.7.2' tillerVersion: '>=2.7.2'
version: 1.4.2 version: 1.4.3
...@@ -75,6 +75,8 @@ spec: ...@@ -75,6 +75,8 @@ spec:
chart: {{ template "grafana.chart" . }} chart: {{ template "grafana.chart" . }}
heritage: {{ .Release.Service }} heritage: {{ .Release.Service }}
release: {{ .Release.Name }} release: {{ .Release.Name }}
annotations:
sidecar.istio.io/inject: "false"
spec: spec:
serviceAccountName: istio-grafana-post-install-account serviceAccountName: istio-grafana-post-install-account
containers: containers:
......
...@@ -3,4 +3,4 @@ appVersion: "0.1" ...@@ -3,4 +3,4 @@ appVersion: "0.1"
description: Istio CoreDNS provides DNS resolution for services in multicluster setups. description: Istio CoreDNS provides DNS resolution for services in multicluster setups.
name: istiocoredns name: istiocoredns
tillerVersion: '>=2.7.2' tillerVersion: '>=2.7.2'
version: 1.4.2 version: 1.4.3
...@@ -71,6 +71,9 @@ spec: ...@@ -71,6 +71,9 @@ spec:
mountPath: "/kiali-cert" mountPath: "/kiali-cert"
- name: kiali-secret - name: kiali-secret
mountPath: "/kiali-secret" mountPath: "/kiali-secret"
- name: kiali-console
subPath: env.js
mountPath: /opt/kiali/console/env.js
resources: resources:
{{- if .Values.resources }} {{- if .Values.resources }}
{{ toYaml .Values.resources | indent 10 }} {{ toYaml .Values.resources | indent 10 }}
...@@ -78,6 +81,12 @@ spec: ...@@ -78,6 +81,12 @@ spec:
{{ toYaml .Values.global.defaultResources | indent 10 }} {{ toYaml .Values.global.defaultResources | indent 10 }}
{{- end }} {{- end }}
volumes: volumes:
- name: kiali-console
configMap:
name: kiali-console
items:
- key: env.js
path: env.js
- name: kiali-configuration - name: kiali-configuration
configMap: configMap:
name: kiali name: kiali
......
apiVersion: v1
kind: ConfigMap
metadata:
name: kiali-console
namespace: {{ .Release.Namespace }}
labels:
app: {{ template "kiali.name" . }}
chart: {{ template "kiali.chart" . }}
heritage: {{ .Release.Service }}
release: {{ .Release.Name }}
data:
env.js: |
window.WEB_ROOT='/k8s/clusters/{{ .Values.global.rancher.clusterId }}/api/v1/namespaces/istio-system/services/http:kiali:20001/proxy';
\ No newline at end of file
apiVersion: v1 apiVersion: v1
appVersion: 1.4.2 appVersion: 1.4.3
description: Helm chart for mixer deployment description: Helm chart for mixer deployment
engine: gotpl engine: gotpl
icon: https://istio.io/favicons/android-192x192.png icon: https://istio.io/favicons/android-192x192.png
...@@ -10,4 +10,4 @@ name: mixer ...@@ -10,4 +10,4 @@ name: mixer
sources: sources:
- http://github.com/istio/istio - http://github.com/istio/istio
tillerVersion: '>=2.7.2' tillerVersion: '>=2.7.2'
version: 1.4.2 version: 1.4.3
apiVersion: v1 apiVersion: v1
appVersion: 1.4.2 appVersion: 1.4.3
description: Helm chart for nodeagent deployment description: Helm chart for nodeagent deployment
engine: gotpl engine: gotpl
icon: https://istio.io/favicons/android-192x192.png icon: https://istio.io/favicons/android-192x192.png
...@@ -10,4 +10,4 @@ name: nodeagent ...@@ -10,4 +10,4 @@ name: nodeagent
sources: sources:
- http://github.com/istio/istio - http://github.com/istio/istio
tillerVersion: '>=2.7.2' tillerVersion: '>=2.7.2'
version: 1.4.2 version: 1.4.3
apiVersion: v1 apiVersion: v1
appVersion: 1.4.2 appVersion: 1.4.3
description: Helm chart for pilot deployment description: Helm chart for pilot deployment
engine: gotpl engine: gotpl
icon: https://istio.io/favicons/android-192x192.png icon: https://istio.io/favicons/android-192x192.png
...@@ -10,4 +10,4 @@ name: pilot ...@@ -10,4 +10,4 @@ name: pilot
sources: sources:
- http://github.com/istio/istio - http://github.com/istio/istio
tillerVersion: '>=2.7.2' tillerVersion: '>=2.7.2'
version: 1.4.2 version: 1.4.3
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment