More README update

This commit is contained in:
Stefan Reimer 2020-05-04 14:46:55 +01:00
parent fb2252f602
commit d0852fb193
2 changed files with 17 additions and 18 deletions

View File

@ -27,12 +27,13 @@ Source code can be found [here](https://kubezero.com)
| argo-cd.repoServer.nodeSelector."node-role.kubernetes.io/master" | string | `""` | | | argo-cd.repoServer.nodeSelector."node-role.kubernetes.io/master" | string | `""` | |
| argo-cd.repoServer.tolerations[0].effect | string | `"NoSchedule"` | | | argo-cd.repoServer.tolerations[0].effect | string | `"NoSchedule"` | |
| argo-cd.repoServer.tolerations[0].key | string | `"node-role.kubernetes.io/master"` | | | argo-cd.repoServer.tolerations[0].key | string | `"node-role.kubernetes.io/master"` | |
| argo-cd.server.config.url | string | `"argocd.example.com"` | | | argo-cd.server.config.url | string | `"argocd.example.com"` | ArgoCD hostname to be exposed via Istio |
| argo-cd.server.extraArgs[0] | string | `"--insecure"` | | | argo-cd.server.extraArgs[0] | string | `"--insecure"` | |
| argo-cd.server.nodeSelector."node-role.kubernetes.io/master" | string | `""` | | | argo-cd.server.nodeSelector."node-role.kubernetes.io/master" | string | `""` | |
| argo-cd.server.service.servicePortHttpsName | string | `"grpc"` | | | argo-cd.server.service.servicePortHttpsName | string | `"grpc"` | |
| argo-cd.server.tolerations[0].effect | string | `"NoSchedule"` | | | argo-cd.server.tolerations[0].effect | string | `"NoSchedule"` | |
| argo-cd.server.tolerations[0].key | string | `"node-role.kubernetes.io/master"` | | | argo-cd.server.tolerations[0].key | string | `"node-role.kubernetes.io/master"` | |
| bootstrap | bool | `true` | | | bootstrap | bool | `true` | Wether to install the root-app `kubezero-app` |
| istio.enabled | bool | `false` | | | config | object | `{}` | Kubezero configuration to be passed into kubezero-app |
| istio.gateway | string | `"ingressgateway.istio-system.svc.cluster.local"` | | | istio.enabled | bool | `false` | Deploy Istio VirtualService to expose ArgoCD |
| istio.gateway | string | `"ingressgateway.istio-system.svc.cluster.local"` | Name of the Istio gateway to add the VirtualService to |

View File

@ -1,13 +1,8 @@
# bootstrap -- Wether to install the root-app `kubezero-app`
bootstrap: true bootstrap: true
#config: # config -- Kubezero configuration to be passed into kubezero-app
# defaultSource: config: {}
# repoURL: https://myprivate.repo.com/k8s-components
# pathPrefix: 'some-folder'
#
# # Enabled component
# calico:
# enabled: true
argo-cd: argo-cd:
installCRDs: false installCRDs: false
@ -34,6 +29,7 @@ argo-cd:
server: server:
config: config:
# argo-cd.server.config.url -- ArgoCD hostname to be exposed via Istio
url: argocd.example.com url: argocd.example.com
# Rename former https port to grpc, works with istio + insecure # Rename former https port to grpc, works with istio + insecure
@ -59,5 +55,7 @@ argo-cd:
enabled: false enabled: false
istio: istio:
# istio.enabled -- Deploy Istio VirtualService to expose ArgoCD
enabled: false enabled: false
# istio.gateway -- Name of the Istio gateway to add the VirtualService to
gateway: ingressgateway.istio-system.svc.cluster.local gateway: ingressgateway.istio-system.svc.cluster.local