Skip to content

Commit

Permalink
enh(cert-manager): switch from installCRDs to crds.enabled (#3015)
Browse files Browse the repository at this point in the history
This was introduced in v1.14.0 of the chart, and installCRDs is deprecated now

> WARNING: `installCRDs` is deprecated, use `crds.enabled` instead.

Signed-off-by: Thomas P. <[email protected]>
  • Loading branch information
TPXP authored and ArchiFleKs committed Oct 6, 2024
1 parent 154d6ef commit fd5d054
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion cert-manager.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ prometheus:
enabled: ${local.kube-prometheus-stack["enabled"] || local.victoria-metrics-k8s-stack["enabled"]}
securityContext:
fsGroup: 1001
installCRDs: true
crds:
enabled: true
VALUES

}
Expand Down
3 changes: 2 additions & 1 deletion modules/aws/cert-manager.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ prometheus:
enabled: ${local.kube-prometheus-stack["enabled"] || local.victoria-metrics-k8s-stack["enabled"]}
securityContext:
fsGroup: 1001
installCRDs: true
crds:
enabled: true
VALUES

}
Expand Down
3 changes: 2 additions & 1 deletion modules/google/cert-manager.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ prometheus:
honorLabels: true
securityContext:
fsGroup: 1001
installCRDs: true
crds:
enabled: true
VALUES
}

Expand Down
3 changes: 2 additions & 1 deletion modules/scaleway/cert-manager.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ prometheus:
enabled: ${local.kube-prometheus-stack["enabled"] || local.victoria-metrics-k8s-stack["enabled"]}
securityContext:
fsGroup: 1001
installCRDs: true
crds:
enabled: true
VALUES

}
Expand Down

0 comments on commit fd5d054

Please sign in to comment.