Skip to content

Commit

Permalink
feat(chart): comply with Pod Security Standards (#3689)
Browse files Browse the repository at this point in the history
* feat(chart): comply with Pod Security Standards

* chore(chart): Update CHANGELOG.md

* chore(chart): add ci-values.yaml
  • Loading branch information
nrvnrvn committed Jun 17, 2023
1 parent de63396 commit 66a770c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions charts/external-dns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### All Changes

- Disallowed privilege escalation in container security context and set the seccomp profile type to `RuntimeDefault`. ([#3689](https://github.com/kubernetes-sigs/external-dns/pull/3689)) [@nrvnrvn](https://github.com/nrvnrvn)

## [v1.13.0] - 2023-03-30

### All Changes
Expand Down
1 change: 1 addition & 0 deletions charts/external-dns/ci/ci-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
provider: inmemory
3 changes: 3 additions & 0 deletions charts/external-dns/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,11 @@ shareProcessNamespace: false

podSecurityContext:
fsGroup: 65534
seccompProfile:
type: RuntimeDefault

securityContext:
allowPrivilegeEscalation: false
runAsNonRoot: true
runAsUser: 65534
readOnlyRootFilesystem: true
Expand Down

0 comments on commit 66a770c

Please sign in to comment.