diff --git a/.gitignore b/.gitignore index 7d7cf0d5bd24..c3fc87c2a5db 100644 --- a/.gitignore +++ b/.gitignore @@ -29,6 +29,7 @@ integration-tests/gen-scripts/ /bin/ *.hprof **/.ipynb_checkpoints/ +helm/druid/charts website/.yarn/ website/node_modules/ website/.docusaurus/ diff --git a/helm/druid/Chart.yaml b/helm/druid/Chart.yaml index aeb629d9fcf2..5244f7d0afd2 100644 --- a/helm/druid/Chart.yaml +++ b/helm/druid/Chart.yaml @@ -30,7 +30,7 @@ dependencies: version: 8.6.4 repository: https://charts.helm.sh/stable condition: postgresql.enabled -version: 0.3.5 +version: 0.3.6 home: https://druid.apache.org/ icon: https://druid.apache.org/img/favicon.png sources: diff --git a/helm/druid/README.md b/helm/druid/README.md index 85c72ef2a818..1562ece84f9f 100644 --- a/helm/druid/README.md +++ b/helm/druid/README.md @@ -117,6 +117,9 @@ The following table lists the configurable parameters of the Druid chart and the | `broker.ingress.hosts` | hosts for the broker api | `[ "chart-example.local" ]` | | `broker.ingress.path` | path of the broker api | `/` | | `broker.ingress.annotations` | annotations for the broker api ingress | `{}` | +| `broker.ingress.labels` | labels for the broker api ingress | `{}` | +| `broker.ingress.ingressClassName` | ingressClassName of the broker api ingress | `` | +| `broker.ingress.pathType` | pathType of the broker api ingress | `` | | `broker.ingress.tls` | TLS configuration for the ingress | `[]` | | `coordinator.enabled` | enable coordinator | `true` | | `coordinator.name` | coordinator component name | `coordinator` | @@ -138,6 +141,9 @@ The following table lists the configurable parameters of the Druid chart and the | `coordinator.ingress.hosts` | hosts for the coordinator api | `[ "chart-example.local" ]` | | `coordinator.ingress.path` | path of the coordinator api | `/` | | `coordinator.ingress.annotations` | annotations for the coordinator api ingress | `{}` | +| `coordinator.ingress.labels` | labels for the coordinator api ingress | `{}` | +| `coordinator.ingress.ingressClassName` | ingressClassName of the coordinator api ingress | `` | +| `coordinator.ingress.pathType` | pathType of the coordinator api ingress | `` | | `coordinator.ingress.tls` | TLS configuration for the ingress | `[]` | | `overlord.enabled` | enable overlord | `false` | | `overlord.name` | overlord component name | `overlord` | @@ -159,6 +165,9 @@ The following table lists the configurable parameters of the Druid chart and the | `overlord.ingress.hosts` | hosts for the overlord api | `[ "chart-example.local" ]` | | `overlord.ingress.path` | path of the overlord api | `/` | | `overlord.ingress.annotations` | annotations for the overlord api ingress | `{}` | +| `overlord.ingress.labels` | labels for the overlord api ingress | `{}` | +| `overlord.ingress.ingressClassName` | ingressClassName of the overlord api ingress | `` | +| `overlord.ingress.pathType` | pathType of the overlord api ingress | `` | | `overlord.ingress.tls` | TLS configuration for the ingress | `[]` | | `historical.enabled` | enable historical | `true` | | `historical.name` | historical component name | `historical` | @@ -188,6 +197,9 @@ The following table lists the configurable parameters of the Druid chart and the | `historical.ingress.hosts` | hosts for the historical api | `[ "chart-example.local" ]` | | `historical.ingress.path` | path of the historical api | `/` | | `historical.ingress.annotations` | annotations for the historical api ingress | `{}` | +| `historical.ingress.labels` | labels for the historical api ingress | `{}` | +| `historical.ingress.ingressClassName` | ingressClassName of the historical api ingress | `` | +| `historical.ingress.pathType` | pathType of the historical api ingress | `` | | `historical.ingress.tls` | TLS configuration for the ingress | `[]` | | `middleManager.enabled` | enable middleManager | `true` | | `middleManager.name` | middleManager component name | `middleManager` | @@ -219,6 +231,9 @@ The following table lists the configurable parameters of the Druid chart and the | `middleManager.ingress.hosts` | hosts for the middleManager api | `[ "chart-example.local" ]` | | `middleManager.ingress.path` | path of the middleManager api | `/` | | `middleManager.ingress.annotations` | annotations for the middleManager api ingress | `{}` | +| `middleManager.ingress.labels` | labels for the middleManager api ingress | `{}` | +| `middleManager.ingress.ingressClassName` | ingressClassName of the middleManager api ingress | `` | +| `middleManager.ingress.pathType` | pathType of the middleManager api ingress | `` | | `middleManager.ingress.tls` | TLS configuration for the ingress | `[]` | | `router.enabled` | enable router | `false` | | `router.name` | router component name | `router` | @@ -240,6 +255,9 @@ The following table lists the configurable parameters of the Druid chart and the | `router.ingress.hosts` | hosts for the router api | `[ "chart-example.local" ]` | | `router.ingress.path` | path of the router api | `/` | | `router.ingress.annotations` | annotations for the router api ingress | `{}` | +| `router.ingress.labels` | labels for the router api ingress | `{}` | +| `router.ingress.ingressClassName` | ingressClassName of the router api ingress | `` | +| `router.ingress.pathType` | pathType of the router api ingress | `` | | `router.ingress.tls` | TLS configuration for the ingress | `[]` | | `prometheus.enabled` | Support scraping from prometheus | `false` | | `prometheus.port` | expose prometheus port | `9090` | diff --git a/helm/druid/templates/_capabilities.tpl b/helm/druid/templates/_capabilities.tpl index 2cccff8a2724..1a7dced76d89 100644 --- a/helm/druid/templates/_capabilities.tpl +++ b/helm/druid/templates/_capabilities.tpl @@ -21,12 +21,47 @@ Return the target Kubernetes version {{- end -}} {{/* -Return the appropriate apiVersion for poddisruptionbudget. +Return the appropriate apiVersion for podDisruptionBudget. */}} {{- define "capabilities.policy.apiVersion" -}} -{{- if semverCompare "<1.21-0" (include "capabilities.kubeVersion" .) -}} -{{- print "policy/v1beta1" -}} -{{- else -}} -{{- print "policy/v1" -}} + {{- if semverCompare "<1.21-0" (include "capabilities.kubeVersion" .) -}} + {{- print "policy/v1beta1" -}} + {{- else -}} + {{- print "policy/v1" -}} + {{- end -}} {{- end -}} + +{{/* +Return the appropriate apiVersion and manifest format for ingress +*/}} +{{- define "capabilities.ingress.apiVersion" -}} + {{- if semverCompare "<1.14-0" (include "capabilities.kubeVersion" .) -}} + {{- print "extensions/v1beta1" -}} + {{- else if semverCompare "<1.19-0" (include "capabilities.kubeVersion" .) -}} + {{- print "networking.k8s.io/v1beta1" -}} + {{- else -}} + {{- print "networking.k8s.io/v1" -}} + {{- end }} +{{- end -}} + +{{/* Check Ingress stability */}} +{{- define "capabilities.ingress.isStable" -}} + {{- eq (include "capabilities.ingress.apiVersion" .) "networking.k8s.io/v1" -}} +{{- end -}} + +{{/* Check Ingress supports pathType */}} +{{/* pathType was added to networking.k8s.io/v1beta1 in Kubernetes 1.18 */}} +{{- define "capabilities.ingress.supportsPathType" -}} + {{- or (eq (include "capabilities.ingress.isStable" .) "true") (and (eq (include "capabilities.ingress.apiVersion" .) "networking.k8s.io/v1beta1") (semverCompare ">= 1.18-0" (include "capabilities.kubeVersion" .))) -}} +{{- end -}} + +{{/* +Return the appropriate apiVersion for Horizontal Pod Autoscaler. +*/}} +{{- define "capabilities.hpa.apiVersion" -}} + {{- if semverCompare "<1.23-0" (include "capabilities.kubeVersion" .) -}} + {{- print "autoscaling/v2beta2" -}} + {{- else -}} + {{- print "autoscaling/v2" -}} + {{- end -}} {{- end -}} diff --git a/helm/druid/templates/broker/ingress.yaml b/helm/druid/templates/broker/ingress.yaml index df27d7e35c59..3008b308a014 100644 --- a/helm/druid/templates/broker/ingress.yaml +++ b/helm/druid/templates/broker/ingress.yaml @@ -19,8 +19,12 @@ {{- if .Values.broker.ingress.enabled -}} {{- $fullName := include "druid.broker.fullname" . -}} +{{- $svcPort := .Values.broker.port -}} {{- $ingressPath := .Values.broker.ingress.path -}} -apiVersion: extensions/v1beta1 +{{- $ingressPathType := .Values.broker.ingress.pathType | default "ImplementationSpecific" -}} +{{- $apiIsStable := eq (include "capabilities.ingress.isStable" .) "true" -}} +{{- $ingressSupportsPathType := eq (include "capabilities.ingress.supportsPathType" .) "true" -}} +apiVersion: {{ include "capabilities.ingress.apiVersion" . }} kind: Ingress metadata: name: {{ $fullName }} @@ -30,29 +34,47 @@ metadata: component: {{ .Values.broker.name }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} -{{- with .Values.broker.ingress.annotations }} + {{- with .Values.broker.ingress.labels }} + {{- toYaml . | nindent 4 }} + {{- end }} + {{- with .Values.broker.ingress.annotations }} annotations: -{{ toYaml . | indent 4 }} -{{- end }} + {{- toYaml . | nindent 4 }} + {{- end }} spec: -{{- if .Values.broker.ingress.tls }} + {{- if $apiIsStable }} + {{- if .Values.broker.ingress.ingressClassName }} + ingressClassName: {{ .Values.broker.ingress.ingressClassName }} + {{- end }} + {{- end }} + {{- if .Values.broker.ingress.tls }} tls: - {{- range .Values.broker.ingress.tls }} + {{- range .Values.broker.ingress.tls }} - hosts: {{- range .hosts }} - {{ . | quote }} {{- end }} secretName: {{ .secretName }} + {{- end }} {{- end }} -{{- end }} rules: {{- range .Values.broker.ingress.hosts }} - host: {{ . | quote }} http: paths: - path: {{ $ingressPath }} + {{- if and $ingressPathType $ingressSupportsPathType }} + pathType: {{ $ingressPathType }} + {{- end }} backend: + {{- if $apiIsStable }} + service: + name: {{ $fullName }} + port: + number: {{ $svcPort }} + {{- else }} serviceName: {{ $fullName }} - servicePort: http + servicePort: {{ $svcPort }} + {{- end }} {{- end }} {{- end }} diff --git a/helm/druid/templates/coordinator/ingress.yaml b/helm/druid/templates/coordinator/ingress.yaml index 8d64ea77de17..e03b40529567 100644 --- a/helm/druid/templates/coordinator/ingress.yaml +++ b/helm/druid/templates/coordinator/ingress.yaml @@ -19,8 +19,12 @@ {{- if .Values.coordinator.ingress.enabled -}} {{- $fullName := include "druid.coordinator.fullname" . -}} +{{- $svcPort := .Values.coordinator.port -}} {{- $ingressPath := .Values.coordinator.ingress.path -}} -apiVersion: extensions/v1beta1 +{{- $ingressPathType := .Values.coordinator.ingress.pathType | default "ImplementationSpecific" -}} +{{- $apiIsStable := eq (include "capabilities.ingress.isStable" .) "true" -}} +{{- $ingressSupportsPathType := eq (include "capabilities.ingress.supportsPathType" .) "true" -}} +apiVersion: {{ include "capabilities.ingress.apiVersion" . }} kind: Ingress metadata: name: {{ $fullName }} @@ -30,29 +34,47 @@ metadata: component: {{ .Values.coordinator.name }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} -{{- with .Values.coordinator.ingress.annotations }} + {{- with .Values.coordinator.ingress.labels }} + {{- toYaml . | nindent 4 }} + {{- end }} + {{- with .Values.coordinator.ingress.annotations }} annotations: -{{ toYaml . | indent 4 }} -{{- end }} + {{- toYaml . | nindent 4 }} + {{- end }} spec: -{{- if .Values.coordinator.ingress.tls }} + {{- if $apiIsStable }} + {{- if .Values.coordinator.ingress.ingressClassName }} + ingressClassName: {{ .Values.coordinator.ingress.ingressClassName }} + {{- end }} + {{- end }} + {{- if .Values.coordinator.ingress.tls }} tls: - {{- range .Values.coordinator.ingress.tls }} + {{- range .Values.coordinator.ingress.tls }} - hosts: {{- range .hosts }} - {{ . | quote }} {{- end }} secretName: {{ .secretName }} + {{- end }} {{- end }} -{{- end }} rules: {{- range .Values.coordinator.ingress.hosts }} - host: {{ . | quote }} http: paths: - path: {{ $ingressPath }} + {{- if and $ingressPathType $ingressSupportsPathType }} + pathType: {{ $ingressPathType }} + {{- end }} backend: + {{- if $apiIsStable }} + service: + name: {{ $fullName }} + port: + number: {{ $svcPort }} + {{- else }} serviceName: {{ $fullName }} - servicePort: http + servicePort: {{ $svcPort }} + {{- end }} {{- end }} {{- end }} diff --git a/helm/druid/templates/historical/ingress.yaml b/helm/druid/templates/historical/ingress.yaml index 466e3c5ae594..d1b5e24091fb 100644 --- a/helm/druid/templates/historical/ingress.yaml +++ b/helm/druid/templates/historical/ingress.yaml @@ -19,8 +19,12 @@ {{- if .Values.historical.ingress.enabled -}} {{- $fullName := include "druid.historical.fullname" . -}} +{{- $svcPort := .Values.historical.port -}} {{- $ingressPath := .Values.historical.ingress.path -}} -apiVersion: extensions/v1beta1 +{{- $ingressPathType := .Values.historical.ingress.pathType | default "ImplementationSpecific" -}} +{{- $apiIsStable := eq (include "capabilities.ingress.isStable" .) "true" -}} +{{- $ingressSupportsPathType := eq (include "capabilities.ingress.supportsPathType" .) "true" -}} +apiVersion: {{ include "capabilities.ingress.apiVersion" . }} kind: Ingress metadata: name: {{ $fullName }} @@ -30,29 +34,47 @@ metadata: component: {{ .Values.historical.name }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} -{{- with .Values.historical.ingress.annotations }} + {{- with .Values.historical.ingress.labels }} + {{- toYaml . | nindent 4 }} + {{- end }} + {{- with .Values.historical.ingress.annotations }} annotations: -{{ toYaml . | indent 4 }} -{{- end }} + {{- toYaml . | nindent 4 }} + {{- end }} spec: -{{- if .Values.historical.ingress.tls }} + {{- if $apiIsStable }} + {{- if .Values.historical.ingress.ingressClassName }} + ingressClassName: {{ .Values.historical.ingress.ingressClassName }} + {{- end }} + {{- end }} + {{- if .Values.historical.ingress.tls }} tls: - {{- range .Values.historical.ingress.tls }} + {{- range .Values.historical.ingress.tls }} - hosts: {{- range .hosts }} - {{ . | quote }} {{- end }} secretName: {{ .secretName }} + {{- end }} {{- end }} -{{- end }} rules: {{- range .Values.historical.ingress.hosts }} - host: {{ . | quote }} http: paths: - path: {{ $ingressPath }} + {{- if and $ingressPathType $ingressSupportsPathType }} + pathType: {{ $ingressPathType }} + {{- end }} backend: + {{- if $apiIsStable }} + service: + name: {{ $fullName }} + port: + number: {{ $svcPort }} + {{- else }} serviceName: {{ $fullName }} - servicePort: http + servicePort: {{ $svcPort }} + {{- end }} {{- end }} {{- end }} diff --git a/helm/druid/templates/middleManager/hpa.yaml b/helm/druid/templates/middleManager/hpa.yaml index fcda2f2f1b2f..1837675b05aa 100644 --- a/helm/druid/templates/middleManager/hpa.yaml +++ b/helm/druid/templates/middleManager/hpa.yaml @@ -18,7 +18,7 @@ */}} {{- if .Values.middleManager.autoscaling.enabled }} -apiVersion: autoscaling/v2beta2 +apiVersion: {{ include "capabilities.hpa.apiVersion" . }} kind: HorizontalPodAutoscaler metadata: name: {{ include "druid.middleManager.fullname" . }} @@ -36,5 +36,5 @@ spec: minReplicas: {{ .Values.middleManager.autoscaling.minReplicas }} maxReplicas: {{ .Values.middleManager.autoscaling.maxReplicas }} metrics: -{{ toYaml .Values.middleManager.autoscaling.metrics | indent 4 }} + {{- toYaml .Values.middleManager.autoscaling.metrics | nindent 4 }} {{- end }} \ No newline at end of file diff --git a/helm/druid/templates/middleManager/ingress.yaml b/helm/druid/templates/middleManager/ingress.yaml index 672580a2e7fc..3b07784288ec 100644 --- a/helm/druid/templates/middleManager/ingress.yaml +++ b/helm/druid/templates/middleManager/ingress.yaml @@ -19,8 +19,12 @@ {{- if .Values.middleManager.ingress.enabled -}} {{- $fullName := include "druid.middleManager.fullname" . -}} +{{- $svcPort := .Values.middleManager.port -}} {{- $ingressPath := .Values.middleManager.ingress.path -}} -apiVersion: extensions/v1beta1 +{{- $ingressPathType := .Values.middleManager.ingress.pathType | default "ImplementationSpecific" -}} +{{- $apiIsStable := eq (include "capabilities.ingress.isStable" .) "true" -}} +{{- $ingressSupportsPathType := eq (include "capabilities.ingress.supportsPathType" .) "true" -}} +apiVersion: {{ include "capabilities.ingress.apiVersion" . }} kind: Ingress metadata: name: {{ $fullName }} @@ -30,29 +34,47 @@ metadata: component: {{ .Values.middleManager.name }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} -{{- with .Values.middleManager.ingress.annotations }} + {{- with .Values.middleManager.ingress.labels }} + {{- toYaml . | nindent 4 }} + {{- end }} + {{- with .Values.middleManager.ingress.annotations }} annotations: -{{ toYaml . | indent 4 }} -{{- end }} + {{- toYaml . | nindent 4 }} + {{- end }} spec: -{{- if .Values.middleManager.ingress.tls }} + {{- if $apiIsStable }} + {{- if .Values.middleManager.ingress.ingressClassName }} + ingressClassName: {{ .Values.middleManager.ingress.ingressClassName }} + {{- end }} + {{- end }} + {{- if .Values.middleManager.ingress.tls }} tls: - {{- range .Values.middleManager.ingress.tls }} + {{- range .Values.middleManager.ingress.tls }} - hosts: {{- range .hosts }} - {{ . | quote }} {{- end }} secretName: {{ .secretName }} + {{- end }} {{- end }} -{{- end }} rules: {{- range .Values.middleManager.ingress.hosts }} - host: {{ . | quote }} http: paths: - path: {{ $ingressPath }} + {{- if and $ingressPathType $ingressSupportsPathType }} + pathType: {{ $ingressPathType }} + {{- end }} backend: + {{- if $apiIsStable }} + service: + name: {{ $fullName }} + port: + number: {{ $svcPort }} + {{- else }} serviceName: {{ $fullName }} - servicePort: http + servicePort: {{ $svcPort }} + {{- end }} {{- end }} {{- end }} diff --git a/helm/druid/templates/overlord/ingress.yaml b/helm/druid/templates/overlord/ingress.yaml index f1f3051dbf42..1a24c46e653e 100644 --- a/helm/druid/templates/overlord/ingress.yaml +++ b/helm/druid/templates/overlord/ingress.yaml @@ -19,8 +19,12 @@ {{- if .Values.overlord.ingress.enabled -}} {{- $fullName := include "druid.overlord.fullname" . -}} +{{- $svcPort := .Values.overlord.port -}} {{- $ingressPath := .Values.overlord.ingress.path -}} -apiVersion: extensions/v1beta1 +{{- $ingressPathType := .Values.overlord.ingress.pathType | default "ImplementationSpecific" -}} +{{- $apiIsStable := eq (include "capabilities.ingress.isStable" .) "true" -}} +{{- $ingressSupportsPathType := eq (include "capabilities.ingress.supportsPathType" .) "true" -}} +apiVersion: {{ include "capabilities.ingress.apiVersion" . }} kind: Ingress metadata: name: {{ $fullName }} @@ -30,29 +34,47 @@ metadata: component: {{ .Values.overlord.name }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} -{{- with .Values.overlord.ingress.annotations }} + {{- with .Values.overlord.ingress.labels }} + {{- toYaml . | nindent 4 }} + {{- end }} + {{- with .Values.overlord.ingress.annotations }} annotations: -{{ toYaml . | indent 4 }} -{{- end }} + {{- toYaml . | nindent 4 }} + {{- end }} spec: -{{- if .Values.overlord.ingress.tls }} + {{- if $apiIsStable }} + {{- if .Values.overlord.ingress.ingressClassName }} + ingressClassName: {{ .Values.overlord.ingress.ingressClassName }} + {{- end }} + {{- end }} + {{- if .Values.overlord.ingress.tls }} tls: - {{- range .Values.overlord.ingress.tls }} + {{- range .Values.overlord.ingress.tls }} - hosts: {{- range .hosts }} - {{ . | quote }} {{- end }} secretName: {{ .secretName }} + {{- end }} {{- end }} -{{- end }} rules: {{- range .Values.overlord.ingress.hosts }} - host: {{ . | quote }} http: paths: - path: {{ $ingressPath }} + {{- if and $ingressPathType $ingressSupportsPathType }} + pathType: {{ $ingressPathType }} + {{- end }} backend: + {{- if $apiIsStable }} + service: + name: {{ $fullName }} + port: + number: {{ $svcPort }} + {{- else }} serviceName: {{ $fullName }} - servicePort: http + servicePort: {{ $svcPort }} + {{- end }} {{- end }} {{- end }} diff --git a/helm/druid/templates/router/ingress.yaml b/helm/druid/templates/router/ingress.yaml index aab27fc79b68..a60740ec671e 100644 --- a/helm/druid/templates/router/ingress.yaml +++ b/helm/druid/templates/router/ingress.yaml @@ -19,8 +19,12 @@ {{- if .Values.router.ingress.enabled -}} {{- $fullName := include "druid.router.fullname" . -}} +{{- $svcPort := .Values.router.port -}} {{- $ingressPath := .Values.router.ingress.path -}} -apiVersion: extensions/v1beta1 +{{- $ingressPathType := .Values.router.ingress.pathType | default "ImplementationSpecific" -}} +{{- $apiIsStable := eq (include "capabilities.ingress.isStable" .) "true" -}} +{{- $ingressSupportsPathType := eq (include "capabilities.ingress.supportsPathType" .) "true" -}} +apiVersion: {{ include "capabilities.ingress.apiVersion" . }} kind: Ingress metadata: name: {{ $fullName }} @@ -30,29 +34,47 @@ metadata: component: {{ .Values.router.name }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} -{{- with .Values.router.ingress.annotations }} + {{- with .Values.router.ingress.labels }} + {{- toYaml . | nindent 4 }} + {{- end }} + {{- with .Values.router.ingress.annotations }} annotations: -{{ toYaml . | indent 4 }} -{{- end }} + {{- toYaml . | nindent 4 }} + {{- end }} spec: -{{- if .Values.router.ingress.tls }} + {{- if $apiIsStable }} + {{- if .Values.router.ingress.ingressClassName }} + ingressClassName: {{ .Values.router.ingress.ingressClassName }} + {{- end }} + {{- end }} + {{- if .Values.router.ingress.tls }} tls: - {{- range .Values.router.ingress.tls }} + {{- range .Values.router.ingress.tls }} - hosts: {{- range .hosts }} - {{ . | quote }} {{- end }} secretName: {{ .secretName }} + {{- end }} {{- end }} -{{- end }} rules: {{- range .Values.router.ingress.hosts }} - host: {{ . | quote }} http: paths: - path: {{ $ingressPath }} + {{- if and $ingressPathType $ingressSupportsPathType }} + pathType: {{ $ingressPathType }} + {{- end }} backend: + {{- if $apiIsStable }} + service: + name: {{ $fullName }} + port: + number: {{ $svcPort }} + {{- else }} serviceName: {{ $fullName }} - servicePort: http + servicePort: {{ $svcPort }} + {{- end }} {{- end }} {{- end }} diff --git a/helm/druid/values.yaml b/helm/druid/values.yaml index dab6a49b807b..9322eaba2ac9 100644 --- a/helm/druid/values.yaml +++ b/helm/druid/values.yaml @@ -79,7 +79,10 @@ broker: annotations: {} # kubernetes.io/ingress.class: nginx # kubernetes.io/tls-acme: "true" + labels: {} + ingressClassName: "" path: / + pathType: "" hosts: - chart-example.local tls: [] @@ -134,7 +137,10 @@ coordinator: annotations: {} # kubernetes.io/ingress.class: nginx # kubernetes.io/tls-acme: "true" + labels: {} + ingressClassName: "" path: / + pathType: "" hosts: - chart-example.local tls: [] @@ -186,7 +192,10 @@ overlord: annotations: {} # kubernetes.io/ingress.class: nginx # kubernetes.io/tls-acme: "true" + labels: {} + ingressClassName: "" path: / + pathType: "" hosts: - chart-example.local tls: [] @@ -240,7 +249,10 @@ historical: annotations: {} # kubernetes.io/ingress.class: nginx # kubernetes.io/tls-acme: "true" + labels: {} + ingressClassName: "" path: / + pathType: "" hosts: - chart-example.local tls: [] @@ -337,7 +349,10 @@ middleManager: annotations: {} # kubernetes.io/ingress.class: nginx # kubernetes.io/tls-acme: "true" + labels: {} + ingressClassName: "" path: / + pathType: "" hosts: - chart-example.local tls: [] @@ -412,7 +427,10 @@ router: annotations: {} # kubernetes.io/ingress.class: nginx # kubernetes.io/tls-acme: "true" + labels: {} + ingressClassName: "" path: / + pathType: "" hosts: - chart-example.local tls: []