Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ Helm chart to deploy CAP Operator https://sap.github.io/cap-operator/
| controller.resources.requests.cpu | float | `0.02` | CPU request |
| controller.volumes | list | `[]` | Optionally specify list of additional volumes for the controller pod(s) |
| controller.volumeMounts | list | `[]` | Optionally specify list of additional volumeMounts for the controller container(s) |
| controller.certManager | string | `""` | Override the cert manager type (e.g. "gardener" or "cert-manager.io"); if empty, auto-detected via API capabilities |
| controller.dnsManager | string | `""` | Override the DNS manager type (e.g. "gardener" or "kubernetes"); if empty, auto-detected via API capabilities |
| controller.dnsTarget | string | `""` | The dns target mentioned on the public ingress gateway service used in the cluster |
| controller.detailedOperationalMetrics | bool | `false` | Optionally enable detailed opertational metrics for the controller by setting this to true |
| controller.maxConcurrentReconciles.capApplication | string | `""` | The maximum number of concurrent reconciles (e.g. "1") for the cap application |
Expand Down
4 changes: 2 additions & 2 deletions chart/templates/controller-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ spec:
- name: DETAILED_OPERATIONAL_METRICS
value: "{{ .Values.controller.detailedOperationalMetrics }}"
- name: CERT_MANAGER
value: {{ .Capabilities.APIVersions.Has "cert.gardener.cloud/v1alpha1" | ternary "gardener" "cert-manager.io" }}
value: {{ .Values.controller.certManager | default (.Capabilities.APIVersions.Has "cert.gardener.cloud/v1alpha1" | ternary "gardener" "cert-manager.io") }}
- name: DNS_MANAGER
value: {{ .Capabilities.APIVersions.Has "dns.gardener.cloud/v1alpha1" | ternary "gardener" "kubernetes" }}
value: {{ .Values.controller.dnsManager | default (.Capabilities.APIVersions.Has "dns.gardener.cloud/v1alpha1" | ternary "gardener" "kubernetes") }}
{{- if .Values.controller.dnsTarget }}
- name: DNS_TARGET
value: {{ .Values.controller.dnsTarget }}
Expand Down
4 changes: 4 additions & 0 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ controller:
volumes: []
# -- Optionally specify list of additional volumeMounts for the controller container(s)
volumeMounts: []
# -- Override the cert manager type (e.g. "gardener" or "cert-manager.io"); if empty, auto-detected via API capabilities
certManager: ""
# -- Override the DNS manager type (e.g. "gardener" or "kubernetes"); if empty, auto-detected via API capabilities
dnsManager: ""
# -- The dns target mentioned on the public ingress gateway service used in the cluster
dnsTarget: ""
# -- Optionally enable detailed opertational metrics for the controller by setting this to true
Expand Down