Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set global.podSecurityStandards.enforced to false in cluster conf… #1650

Merged
merged 1 commit into from
Sep 26, 2023
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Create `external-dns-cluster-values` configmap on cluster creation.

### Changed

- Set `global.podSecurityStandards.enforced` to `false` in cluster configmap.

## [5.8.0] - 2023-09-01

### Added
Expand Down
2 changes: 1 addition & 1 deletion pkg/project/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var (
gitSHA = "n/a"
name = "cluster-operator"
source = "https://github.com/giantswarm/cluster-operator"
version = "5.8.1-dev"
version = "5.8.0"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we need a patch version (i.e. 5.8.0-patch1) reconciling the same version 5.8.0

)

func Description() string {
Expand Down
2 changes: 1 addition & 1 deletion service/controller/resource/clusterconfigmap/desired.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func (r *Resource) GetDesiredState(ctx context.Context, obj interface{}) ([]*cor
},
"global": map[string]interface{}{
"podSecurityStandards": map[string]interface{}{
"enforced": true,
"enforced": false,
},
},
}
Expand Down
Loading