Skip to content
Snippets Groups Projects
Verified Commit e103ba66 authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

fix(infrastructure): Disable Pod Security Policies in helm releases

Pod Security Policies have been deprecated in favour of Pod Security
Standards, which are a bit less flexible, but way easier to configure
and handle.
parent c518c0a6
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,7 @@ spec: ...@@ -32,7 +32,7 @@ spec:
- --metric-resolution=15s - --metric-resolution=15s
- --kubelet-insecure-tls - --kubelet-insecure-tls
rbac: rbac:
pspEnabled: true pspEnabled: false
podDisruptionBudget: podDisruptionBudget:
enabled: true enabled: true
minAvailable: 1 minAvailable: 1
......
...@@ -37,7 +37,7 @@ data: ...@@ -37,7 +37,7 @@ data:
global: global:
rbac: rbac:
create: true create: true
pspEnabled: true pspEnabled: false
createAggregateClusterRoles: true createAggregateClusterRoles: true
alertmanager: alertmanager:
enabled: true enabled: true
...@@ -131,7 +131,7 @@ data: ...@@ -131,7 +131,7 @@ data:
rbac: rbac:
create: true create: true
podSecurityPolicy: podSecurityPolicy:
enabled: true enabled: false
nodeExporter: nodeExporter:
enabled: true enabled: true
prometheusOperator: prometheusOperator:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment