mirror of https://git.rancher.io/charts
Update istio-installer image, add debug values
parent
e96b08a22c
commit
0ec6ab4350
34
index.yaml
34
index.yaml
|
@ -1952,40 +1952,6 @@ entries:
|
|||
- assets/rancher-grafana/rancher-grafana-6.6.401.tgz
|
||||
version: 6.6.401
|
||||
rancher-istio:
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: rancher-kiali-server-crd=100.0.0+up1.35.0
|
||||
catalog.cattle.io/certified: rancher
|
||||
catalog.cattle.io/display-name: Istio
|
||||
catalog.cattle.io/namespace: istio-system
|
||||
catalog.cattle.io/os: linux
|
||||
catalog.cattle.io/provides-gvr: networking.istio.io.virtualservice/v1beta1
|
||||
catalog.cattle.io/rancher-version: '>= 2.6.0-0'
|
||||
catalog.cattle.io/release-name: rancher-istio
|
||||
catalog.cattle.io/requests-cpu: 710m
|
||||
catalog.cattle.io/requests-memory: 2314Mi
|
||||
catalog.cattle.io/type: cluster-tool
|
||||
catalog.cattle.io/ui-component: istio
|
||||
apiVersion: v1
|
||||
appVersion: 1.10.4
|
||||
created: "2021-09-23T13:53:23.208871-07:00"
|
||||
dependencies:
|
||||
- condition: kiali.enabled
|
||||
name: kiali
|
||||
repository: file://./charts/kiali
|
||||
- condition: tracing.enabled
|
||||
name: tracing
|
||||
repository: file://./charts/tracing
|
||||
description: A basic Istio setup that installs with the istioctl. Refer to https://istio.io/latest/
|
||||
for details.
|
||||
digest: 75f077c7a261394cf96e1f94e5fe3f28b7714a4ca5eb285576019bb4c3e297bb
|
||||
icon: https://charts.rancher.io/assets/logos/istio.svg
|
||||
keywords:
|
||||
- networking
|
||||
- infrastructure
|
||||
name: rancher-istio
|
||||
urls:
|
||||
- assets/rancher-istio/rancher-istio-100.0.1+up1.10.4.tgz
|
||||
version: 100.0.1+up1.10.4
|
||||
- annotations:
|
||||
catalog.cattle.io/auto-install: rancher-kiali-server-crd=100.0.0+up1.35.0
|
||||
catalog.cattle.io/certified: rancher
|
||||
|
|
|
@ -29,6 +29,10 @@ spec:
|
|||
value: {{ .Values.forceInstall | default "false" | quote }}
|
||||
- name: RELEASE_MIRROR_ENABLED
|
||||
value: {{ .Values.installer.releaseMirror.enabled | quote }}
|
||||
- name: DEBUG
|
||||
value: {{ .Values.installer.debug.enabled | quote }}
|
||||
- name: SECONDS_SLEEP
|
||||
value: {{ .Values.installer.debug.secondsSleep | quote}}
|
||||
command: ["/bin/sh","-c"]
|
||||
args: ["/usr/local/app/scripts/run.sh"]
|
||||
volumeMounts:
|
||||
|
|
|
@ -5,12 +5,16 @@ forceInstall: false
|
|||
|
||||
installer:
|
||||
repository: rancher/istio-installer
|
||||
tag: 1.10.4-rancher2
|
||||
tag: 1.10.4-rancher3
|
||||
##releaseMirror are configurations for istio upgrades.
|
||||
##Setting releaseMirror.enabled: true will cause istio to use bundled in images from rancher/istio-installer to perfom an upgrade - this is ideal
|
||||
##for airgap setups. Setting releaseMirror.enabled to false means istio will call externally to github to fetch the required assets.
|
||||
releaseMirror:
|
||||
enabled: false
|
||||
##A flag to run a sleep command `sleep <secondsSleep>s` to allow time to exec into istio-installer pod for debugging
|
||||
debug:
|
||||
enabled: false
|
||||
secondsSleep: 500
|
||||
|
||||
##Native support for dns added in 1.8
|
||||
dns:
|
||||
|
|
Loading…
Reference in New Issue