Another round of Istio fixes
This commit is contained in:
parent
9aff2d271a
commit
16cb90730e
@ -2,7 +2,7 @@ kubezero-cert-manager
|
||||
=====================
|
||||
KubeZero Umbrella Chart for cert-manager
|
||||
|
||||
Current chart version is `0.3.4`
|
||||
Current chart version is `0.3.5`
|
||||
|
||||
Source code can be found [here](https://kubezero.com)
|
||||
|
||||
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||
name: kubezero-istio
|
||||
description: KubeZero Umbrella Chart for Istio
|
||||
type: application
|
||||
version: 0.1.3
|
||||
version: 0.1.4
|
||||
appVersion: 1.6.5
|
||||
home: https://kubezero.com
|
||||
icon: https://cdn.zero-downtime.net/assets/kubezero/logo-small-64.png
|
||||
|
@ -5,7 +5,7 @@ KubeZero Umbrella Chart for Istio
|
||||
Installs Istio Operator and KubeZero Istio profile
|
||||
|
||||
|
||||
Current chart version is `0.1.3`
|
||||
Current chart version is `0.1.4`
|
||||
|
||||
Source code can be found [here](https://kubezero.com)
|
||||
|
||||
@ -23,8 +23,12 @@ Source code can be found [here](https://kubezero.com)
|
||||
|
||||
| Key | Type | Default | Description |
|
||||
|-----|------|---------|-------------|
|
||||
| ingress.autoscaleEnabled | bool | `false` | |
|
||||
| ingress.replicaCount | int | `2` | |
|
||||
| istio-operator.hub | string | `"docker.io/istio"` | |
|
||||
| istio-operator.tag | string | `"1.6.5"` | |
|
||||
| istiod.autoscaleEnabled | bool | `false` | |
|
||||
| istiod.replicaCount | int | `1` | |
|
||||
|
||||
## Resources
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
{{- if .Values.ingress.dnsNames }}
|
||||
apiVersion: cert-manager.io/v1alpha2
|
||||
kind: Certificate
|
||||
metadata:
|
||||
@ -10,3 +11,4 @@ spec:
|
||||
kind: ClusterIssuer
|
||||
dnsNames:
|
||||
{{ toYaml .Values.ingress.dnsNames | indent 4 }}
|
||||
{{- end }}
|
||||
|
@ -5,8 +5,8 @@ istiod:
|
||||
ingress:
|
||||
autoscaleEnabled: false
|
||||
replicaCount: 2
|
||||
dnsNames:
|
||||
- "*.example.com"
|
||||
#dnsNames:
|
||||
#- "*.example.com"
|
||||
|
||||
istio-operator:
|
||||
hub: docker.io/istio
|
||||
|
@ -2,7 +2,7 @@ kubezero
|
||||
========
|
||||
KubeZero ArgoCD Application - Root App of Apps chart of KubeZero
|
||||
|
||||
Current chart version is `0.3.8`
|
||||
Current chart version is `0.3.9`
|
||||
|
||||
Source code can be found [here](https://kubezero.com)
|
||||
|
||||
|
@ -65,6 +65,8 @@ kubezero:
|
||||
istio:
|
||||
enabled: {{ .Values.istio.enabled }}
|
||||
values:
|
||||
istiod:
|
||||
replicaCount: {{ ternary 2 1 .Values.HighAvailableControlplane }}
|
||||
ingress:
|
||||
dnsNames:
|
||||
{{- with .Values.istio.ingress.dnsNames }}
|
||||
|
Loading…
Reference in New Issue
Block a user