Unverified Commit b3c3e263 by GC Committed by GitHub

added specific image tag for istio v0.7.1 charts (#28)

parent 680c0e4f
...@@ -2,12 +2,16 @@ name: istio ...@@ -2,12 +2,16 @@ name: istio
version: 1.0.0 version: 1.0.0
appVersion: 0.7.1 appVersion: 0.7.1
description: Helm chart for all istio components description: Helm chart for all istio components
home: https://istio.io/
keywords: keywords:
- istio - istio
- security - security
- sidecar-injector - sidecar-injector
- mixer - mixer
- pilot - pilot
maintainers:
- email: guangbo@rancher.com
name: guangbochen
sources: sources:
- http://github.com/istio/istio - http://github.com/istio/istio
engine: gotpl engine: gotpl
......
...@@ -16,11 +16,13 @@ questions: ...@@ -16,11 +16,13 @@ questions:
description: "The security image repository" description: "The security image repository"
type: string type: string
label: Security Image Repository label: Security Image Repository
required: true
- variable: security.image.tag - variable: security.image.tag
default: "0.7.1" default: "0.7.1"
description: "The security image tag" description: "The security image tag"
type: string type: string
label: Security Image Tag label: Security Image Tag
required: true
- variable: global.proxy.image - variable: global.proxy.image
default: "istio/proxy" default: "istio/proxy"
description: "The image of istio proxy" description: "The image of istio proxy"
...@@ -44,71 +46,85 @@ questions: ...@@ -44,71 +46,85 @@ questions:
description: "The mixer component image repository" description: "The mixer component image repository"
type: string type: string
label: Mixer Image Repository label: Mixer Image Repository
required: true
- variable: mixer.image.tag - variable: mixer.image.tag
default: "0.7.1" default: "0.7.1"
description: "The mixer image tag" description: "The mixer image tag"
type: string type: string
label: Mixer Image Tag label: Mixer Image Tag
required: true
- variable: mixer.prometheusStatsdExporter.repository - variable: mixer.prometheusStatsdExporter.repository
default: "prom/statsd-exporter" default: "prom/statsd-exporter"
description: "The prometheus stas exporter image repository" description: "The prometheus stas exporter image repository"
type: string type: string
label: Prometheus Exporter Image Repository label: Prometheus Exporter Image Repository
required: true
- variable: mixer.prometheusStatsdExporter.tag - variable: mixer.prometheusStatsdExporter.tag
default: "latest" default: "v0.6.0"
description: "The prometheus stas exporter image tag" description: "The prometheus stas exporter image tag"
type: string type: string
label: Prometheus Exporter Image Tag label: Prometheus Exporter Image Tag
required: true
- variable: pilot.image.repository - variable: pilot.image.repository
default: "istio/pilot" default: "istio/pilot"
description: "The pilot component image repository" description: "The pilot component image repository"
type: string type: string
label: Pilot Image Repository label: Pilot Image Repository
required: true
- variable: pilot.image.tag - variable: pilot.image.tag
default: "0.7.1" default: "0.7.1"
description: "The pilot image tag" description: "The pilot image tag"
type: string type: string
label: Pilot Image Tag label: Pilot Image Tag
required: true
- variable: servicegraph.image.repository - variable: servicegraph.image.repository
default: "istio/servicegraph" default: "istio/servicegraph"
description: "The servicegraph component image repository" description: "The servicegraph component image repository"
type: string type: string
label: Servicegraph Image Repository label: Servicegraph Image Repository
required: true
- variable: servicegraph.image.tag - variable: servicegraph.image.tag
default: "0.7.1" default: "0.7.1"
description: "The servicegraph image tag" description: "The servicegraph image tag"
type: string type: string
label: Servicegraph Image Tag label: Servicegraph Image Tag
required: true
- variable: zipkin.image.repository - variable: zipkin.image.repository
default: "openzipkin/zipkin" default: "openzipkin/zipkin"
description: "The zipkin component image repository" description: "The zipkin component image repository"
type: string type: string
label: Zipkin Image Repository label: Zipkin Image Repository
required: true
- variable: zipkin.image.tag - variable: zipkin.image.tag
default: "latest" default: "2.10.1"
description: "The zipkin image tag" description: "The zipkin image tag"
type: string type: string
label: Zipkin Image Tag label: Zipkin Image Tag
required: true
- variable: grafana.image.repository - variable: grafana.image.repository
default: "istio/grafana" default: "istio/grafana"
description: "The grafana component image repository" description: "The grafana component image repository"
type: string type: string
label: Grafana Image Repository label: Grafana Image Repository
required: true
- variable: grafana.image.tag - variable: grafana.image.tag
default: "0.7.1" default: "0.7.1"
description: "The grafana image tag" description: "The grafana image tag"
type: string type: string
label: Grafana Image Tag label: Grafana Image Tag
required: true
- variable: prometheus.image.repository - variable: prometheus.image.repository
default: "prom/prometheus" default: "prom/prometheus"
description: "The prometheuscomponent image repository" description: "The prometheuscomponent image repository"
type: string type: string
label: Prometheus Image Repository label: Prometheus Image Repository
required: true
- variable: prometheus.image.tag - variable: prometheus.image.tag
default: "latest" default: "v2.3.1"
description: "The prometheus image tag" description: "The prometheus image tag"
type: string type: string
label: Prometheus Image Tag label: Prometheus Image Tag
required: true
- variable: servicegraph.enabled - variable: servicegraph.enabled
default: "true" default: "true"
description: "Enabled the servicegraph component of istio" description: "Enabled the servicegraph component of istio"
......
...@@ -2,27 +2,36 @@ dependencies: ...@@ -2,27 +2,36 @@ dependencies:
- name: sidecar-injector - name: sidecar-injector
version: 0.5.0 version: 0.5.0
condition: sidecar-injector.enabled condition: sidecar-injector.enabled
repository: "file://../charts/sidecar-injector"
- name: ingress - name: ingress
version: 0.5.0 version: 0.5.0
condition: ingress.enabled condition: ingress.enabled
repository: "file://../charts/ingress"
- name: mixer - name: mixer
version: 0.5.0 version: 0.5.0
condition: mixer.enabled condition: mixer.enabled
repository: "file://../charts/mixer"
- name: pilot - name: pilot
version: 0.5.0 version: 0.5.0
condition: pilot.enabled condition: pilot.enabled
repository: "file://../charts/pilot"
- name: security - name: security
version: 0.5.0 version: 0.5.0
condition: global.securityEnabled condition: global.securityEnabled
repository: "file://../charts/security"
- name: grafana - name: grafana
version: 0.1.0 version: 0.1.0
condition: grafana.enabled condition: grafana.enabled
repository: "file://../charts/grafana"
- name: prometheus - name: prometheus
version: 0.1.0 version: 0.1.0
condition: prometheus.enabled condition: prometheus.enabled
repository: "file://../charts/prometheus"
- name: servicegraph - name: servicegraph
version: 0.1.0 version: 0.1.0
condition: servicegraph.enabled condition: servicegraph.enabled
repository: "file://../charts/servicegraph"
- name: zipkin - name: zipkin
version: 0.1.0 version: 0.1.0
condition: zipkin.enabled condition: zipkin.enabled
repository: "file://../charts/zipkin"
...@@ -118,7 +118,7 @@ mixer: ...@@ -118,7 +118,7 @@ mixer:
prometheusStatsdExporter: prometheusStatsdExporter:
repository: prom/statsd-exporter repository: prom/statsd-exporter
tag: latest tag: v0.6.0
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
resources: {} resources: {}
...@@ -204,7 +204,7 @@ prometheus: ...@@ -204,7 +204,7 @@ prometheus:
replicaCount: 1 replicaCount: 1
image: image:
repository: prom/prometheus repository: prom/prometheus
tag: latest tag: v2.3.1
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
ingress: ingress:
enabled: false enabled: false
...@@ -273,7 +273,7 @@ zipkin: ...@@ -273,7 +273,7 @@ zipkin:
replicaCount: 1 replicaCount: 1
image: image:
repository: openzipkin/zipkin repository: openzipkin/zipkin
tag: latest tag: 2.10.1
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
service: service:
name: http name: http
......
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