Add Istio into kubezero, disabled by default

This commit is contained in:
Stefan Reimer 2020-07-14 17:39:12 +01:00
parent f1e78bc6b4
commit ca52f90153
6 changed files with 16 additions and 2 deletions

View File

@ -17,6 +17,7 @@ Source code can be found [here](https://kubezero.com)
| https://zero-down-time.github.io/kubezero/ | kubezero-lib | >= 0.1.1 |
## KubeZero default configuration
- mapped istio-operator to run on the controller nodes only
## Resources

View File

@ -2,7 +2,7 @@ apiVersion: v2
name: kubezero
description: KubeZero ArgoCD Application - Root App of Apps chart of KubeZero
type: application
version: 0.3.6
version: 0.3.7
home: https://kubezero.com
icon: https://cdn.zero-downtime.net/assets/kubezero/logo-small-64.png
keywords:

View File

@ -2,7 +2,7 @@ kubezero
========
KubeZero ArgoCD Application - Root App of Apps chart of KubeZero
Current chart version is `0.3.6`
Current chart version is `0.3.7`
Source code can be found [here](https://kubezero.com)
@ -25,6 +25,7 @@ Source code can be found [here](https://kubezero.com)
| global.defaultSource.pathPrefix | string | `""` | |
| global.defaultSource.repoURL | string | `"https://github.com/zero-down-time/kubezero"` | |
| global.defaultSource.targetRevision | string | `"HEAD"` | |
| istio.enabled | bool | `false` | |
| kiam.enabled | bool | `false` | |
| local-volume-provisioner.enabled | bool | `false` | |
| platform | string | `"aws"` | |

View File

@ -0,0 +1,6 @@
{{- if .Values.istio.enabled }}
{{ template "kubezero-app.app" dict "root" . "name" "istio" "type" "helm" }}
syncPolicy:
automated:
prune: true
{{- end }}

View File

@ -27,3 +27,6 @@ kiam:
aws-ebs-csi-driver:
enabled: true
istio:
enabled: true

View File

@ -32,3 +32,6 @@ kiam:
aws-ebs-csi-driver:
enabled: false
istio:
enabled: false