fix readme

Signed-off-by: julien.michaud <julien.michaud@mirakl.com>
This commit is contained in:
julien.michaud 2023-05-19 11:37:22 +02:00
parent 31772fcce3
commit 83696eacbe
No known key found for this signature in database
GPG key ID: DF35D2C0F04BD341
2 changed files with 7 additions and 2 deletions

View file

@ -240,10 +240,13 @@ Fields to note:
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| server.GKEbackendConfig | object | `{"enabled":false,"spec":{}}` | Create a Google Backendconfig for use with the GKE Ingress Controller |
| server.GKEbackendConfig.enabled | bool | `false` | Enable BackendConfig custom resource for Google Kubernetes Engine |
| server.GKEbackendConfig.spec | object | `{}` | [BackendConfigSpec] |
| server.GKEfrontendConfig | object | `{"enabled":false,"spec":{}}` | Create a Google FrontendConfig Custom Resource, for use with the GKE Ingress Controller |
| server.GKEfrontendConfig.enabled | bool | `false` | Enable FrontConfig custom resource for Google Kubernetes Engine |
| server.GKEfrontendConfig.spec | object | `{}` | [FrontendConfigSpec] |
| server.GKEmanagedCertificate | object | `{"domains":["argoworkflows.example.com"],"enabled":false}` | Create a Google Managed Certificate for use with the GKE Ingress Controller |
| server.GKEmanagedCertificate.domains | list | `["argoworkflows.example.com"]` | Domains for the Google Managed Certificate |
| server.GKEmanagedCertificate.enabled | bool | `false` | Enable ManagedCertificate custom resource for Google Kubernetes Engine. |
| server.affinity | object | `{}` | Assign custom [affinity] rules |

View file

@ -576,6 +576,8 @@ server:
# hosts:
# - argoworkflows.example.com
# -- Create a Google Backendconfig for use with the GKE Ingress Controller
## https://cloud.google.com/kubernetes-engine/docs/how-to/ingress-configuration#configuring_ingress_features_through_backendconfig_parameters
GKEbackendConfig:
# -- Enable BackendConfig custom resource for Google Kubernetes Engine
enabled: false
@ -587,7 +589,7 @@ server:
# oauthclientCredentials:
# secretName: argoworkflows-secret
## Create a Google Managed Certificate for use with the GKE Ingress Controller
# -- Create a Google Managed Certificate for use with the GKE Ingress Controller
## https://cloud.google.com/kubernetes-engine/docs/how-to/managed-certs
GKEmanagedCertificate:
# -- Enable ManagedCertificate custom resource for Google Kubernetes Engine.
@ -596,7 +598,7 @@ server:
domains:
- argoworkflows.example.com
## Create a Google FrontendConfig Custom Resource, for use with the GKE Ingress Controller
# -- Create a Google FrontendConfig Custom Resource, for use with the GKE Ingress Controller
## https://cloud.google.com/kubernetes-engine/docs/how-to/ingress-features#configuring_ingress_features_through_frontendconfig_parameters
GKEfrontendConfig:
# -- Enable FrontConfig custom resource for Google Kubernetes Engine