Skip to content

Commit 875dbd5

Browse files
Merge pull request #2011 from cert-manager/copilot/update-helm-chart-docs
docs: remove config.apiVersion/kind from Helm values examples
2 parents 0e54695 + 77e7bb6 commit 875dbd5

File tree

3 files changed

+0
-16
lines changed

3 files changed

+0
-16
lines changed

content/docs/configuration/acme/http01/README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -243,17 +243,13 @@ following `config` Helm value:
243243

244244
```yaml
245245
config:
246-
apiVersion: controller.config.cert-manager.io/v1alpha1
247-
kind: ControllerConfiguration
248246
enableGatewayAPI: true
249247
```
250248

251249
The corresponding Helm command is:
252250

253251
```sh
254252
helm upgrade --install cert-manager oci://quay.io/jetstack/charts/cert-manager --namespace cert-manager \
255-
--set config.apiVersion="controller.config.cert-manager.io/v1alpha1" \
256-
--set config.kind="ControllerConfiguration" \
257253
--set config.enableGatewayAPI=true
258254
```
259255

content/docs/devops-tips/scaling-cert-manager.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ You can increase the threshold of the client-side rate limiter using the followi
4343
```yaml
4444
# helm-values.yaml
4545
config:
46-
apiVersion: controller.config.cert-manager.io/v1alpha1
47-
kind: ControllerConfiguration
4846
kubernetesAPIQPS: 10000
4947
kubernetesAPIBurst: 10000
5048
```
@@ -125,8 +123,6 @@ You can enable the server-side apply feature gate with the following Helm chart
125123
```yaml
126124
# helm-values.yaml
127125
config:
128-
apiVersion: controller.config.cert-manager.io/v1alpha1
129-
kind: ControllerConfiguration
130126
featureGates:
131127
ServerSideApply: true
132128
```

content/docs/usage/gateway.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -72,17 +72,13 @@ following `config` Helm value:
7272

7373
```yaml
7474
config:
75-
apiVersion: controller.config.cert-manager.io/v1alpha1
76-
kind: ControllerConfiguration
7775
enableGatewayAPI: true
7876
```
7977
8078
The corresponding Helm command is:
8179
8280
```sh
8381
helm upgrade --install cert-manager oci://quay.io/jetstack/charts/cert-manager --namespace cert-manager \
84-
--set config.apiVersion="controller.config.cert-manager.io/v1alpha1" \
85-
--set config.kind="ControllerConfiguration" \
8682
--set config.enableGatewayAPI=true
8783
```
8884

@@ -520,8 +516,6 @@ your `values.yaml`, add the following:
520516
```yaml
521517
# values.yaml
522518
config:
523-
apiVersion: controller.config.cert-manager.io/v1alpha1
524-
kind: ControllerConfiguration
525519
enableGatewayAPI: true
526520
enableGatewayAPIListenerSet: true
527521
featureGates:
@@ -537,8 +531,6 @@ The corresponding Helm command is:
537531
```sh
538532
helm upgrade --install cert-manager oci://quay.io/jetstack/charts/cert-manager \
539533
--namespace cert-manager \
540-
--set config.apiVersion="controller.config.cert-manager.io/v1alpha1" \
541-
--set config.kind="ControllerConfiguration" \
542534
--set config.enableGatewayAPI=true \
543535
--set config.enableGatewayAPIListenerSet=true \
544536
--set config.featureGates.ListenerSets=true

0 commit comments

Comments
 (0)