Compare commits

...

2 Commits

Author SHA1 Message Date
088c3cacd1 chore: docs 2025-05-16 11:58:11 +00:00
5571e2ab85 feature: add optional grpcweb filter to ingress 2025-05-16 11:53:14 +00:00
3 changed files with 11 additions and 2 deletions

View File

@ -38,14 +38,15 @@ Kubernetes: `>= 1.31.0-0`
| argo.argocd-image-updater.enabled | bool | `false` | |
| argo.enabled | bool | `false` | |
| argo.namespace | string | `"argocd"` | |
| argo.targetRevision | string | `"0.3.1"` | |
| argo.targetRevision | string | `"0.3.2"` | |
| cert-manager.enabled | bool | `false` | |
| cert-manager.namespace | string | `"cert-manager"` | |
| cert-manager.targetRevision | string | `"0.9.12"` | |
| falco.enabled | bool | `false` | |
| falco.k8saudit.enabled | bool | `false` | |
| falco.targetRevision | string | `"0.1.2"` | |
| global.aws | object | `{}` | |
| global.aws.accountId | string | `"123456789012"` | |
| global.aws.region | string | `"the-moon"` | |
| global.clusterName | string | `"zdt-trial-cluster"` | |
| global.gcp | object | `{}` | |
| global.highAvailable | bool | `false` | |

View File

@ -98,6 +98,10 @@ proxyProtocol: {{ default true (index .Values "istio-ingress" "proxyProtocol") }
hardening:
{{- toYaml . | nindent 2 }}
{{- end }}
{{- with (index .Values "istio-ingress" "httpFilter") }}
httpFilter:
{{- toYaml . | nindent 2 }}
{{- end }}
{{- end }}

View File

@ -93,6 +93,10 @@ proxyProtocol: {{ default true (index .Values "istio-private-ingress" "proxyProt
hardening:
{{- toYaml . | nindent 2 }}
{{- end }}
{{- with (index .Values "istio-private-ingress" "httpFilter") }}
httpFilter:
{{- toYaml . | nindent 2 }}
{{- end }}
{{- end }}