@@ -7,7 +7,7 @@ KEDA can run on both the cloud and the edge, integrates natively with Kubernetes
77
88---
99<p align="center">
10- We are a Cloud Native Computing Foundation (CNCF) incubation project.
10+ We are a Cloud Native Computing Foundation (CNCF) graduated project.
1111
1212<img src="https://raw.githubusercontent.com/kedacore/keda/main/images/logo-cncf.svg" height="75px">
1313</p>
@@ -21,7 +21,7 @@ helm repo add kedacore https://kedacore.github.io/charts
2121helm repo update
2222
2323kubectl create namespace keda
24- helm install keda kedacore/keda --namespace keda --version 2.10.2
24+ helm install keda kedacore/keda --namespace keda --version {{ template "chart.appVersion" . }}
2525```
2626
2727## Introduction
@@ -36,7 +36,7 @@ To install the chart with the release name `keda`:
3636
3737```console
3838$ kubectl create namespace keda
39- $ helm install keda kedacore/keda --namespace keda --version 2.10.0
39+ $ helm install keda kedacore/keda --namespace keda --version {{ template "chart.version" . }}
4040```
4141
4242## Uninstalling the Chart
@@ -59,7 +59,7 @@ their default values.
5959| Parameter | Type | Default | Description |
6060|-----------|------|---------|-------------|
6161{{- range .Values }}
62- {{- if not (or (contains "operator" .Key) (contains "keda" .Key) (contains "metricServer" .Key) (contains "metricsServer" .Key) (contains "metricsApiServer" .Key) (contains "metricsAdapter" .Key) (contains "webhooks" .Key) (hasPrefix "service." .Key) ) }}
62+ {{- if not (or (contains "operator" .Key) (contains "keda" .Key) (contains "opentelemetry" .Key) (contains "prometheus" .Key) (contains " metricServer" .Key) (contains "metricsServer" .Key) (contains "metricsApiServer" .Key) (contains "metricsAdapter" .Key) (contains "webhooks" .Key) (hasPrefix "service." .Key) ) }}
6363| `{{ .Key }}` | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
6464 {{- end }}
6565{{- end }}
@@ -69,7 +69,7 @@ their default values.
6969| Parameter | Type | Default | Description |
7070|-----------|------|---------|-------------|
7171{{- range .Values }}
72- {{- if or (contains "operator" .Key) (contains "keda" .Key) }}
72+ {{- if and ( or (contains "operator" .Key) (contains "keda" .Key)) (not (or (contains "opentelemetry" .Key) (contains "prometheus" .Key) (contains "profiling" .Key)) ) }}
7373| `{{ .Key }}` | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
7474 {{- end }}
7575{{- end }}
@@ -79,7 +79,27 @@ their default values.
7979| Parameter | Type | Default | Description |
8080|-----------|------|---------|-------------|
8181{{- range .Values }}
82- {{- if or (contains "metricServer" .Key) (contains "metricsServer" .Key) (contains "metricsApiServer" .Key) (contains "metricsAdapter" .Key) (hasPrefix "service." .Key) }}
82+ {{- if and (or (contains "metricServer" .Key) (contains "metricsServer" .Key) (contains "metricsApiServer" .Key) (contains "metricsAdapter" .Key) (hasPrefix "service." .Key)) (not (or (contains "opentelemetry" .Key) (contains "prometheus" .Key) (contains "profiling" .Key)))}}
83+ | `{{ .Key }}` | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
84+ {{- end }}
85+ {{- end }}
86+
87+ ### Operations
88+
89+ | Parameter | Type | Default | Description |
90+ |-----------|------|---------|-------------|
91+ {{- range .Values }}
92+ {{- if or (contains "opentelemetry" .Key) (contains "prometheus" .Key) }}
93+ | `{{ .Key }}` | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
94+ {{- end }}
95+ {{- end }}
96+
97+ ### Troubleshooting
98+
99+ | Parameter | Type | Default | Description |
100+ |-----------|------|---------|-------------|
101+ {{- range .Values }}
102+ {{- if (contains "profiling" .Key) }}
83103| `{{ .Key }}` | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
84104 {{- end }}
85105{{- end }}
@@ -89,7 +109,7 @@ their default values.
89109| Parameter | Type | Default | Description |
90110|-----------|------|---------|-------------|
91111{{- range .Values }}
92- {{- if contains "webhooks" .Key }}
112+ {{- if and ( contains "webhooks" .Key) (not (or (contains "opentelemetry" .Key) (contains "prometheus" .Key) (contains "profiling" .Key))) }}
93113| `{{ .Key }}` | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
94114 {{- end }}
95115{{- end }}
0 commit comments