Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Automated update from upstream #50

Merged
merged 2 commits into from
Oct 4, 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 @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Add PSS flag for PSP->PSS migration.

## [1.3.0] - 2023-08-29

### Changed
Expand Down
2 changes: 1 addition & 1 deletion helm/linkerd-viz/templates/psp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ if .Values.enablePSP -}}
{{ if and .Values.enablePSP (not .Values.global.podSecurityStandards.enforced) -}}
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
Expand Down
16 changes: 16 additions & 0 deletions helm/linkerd-viz/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,22 @@
"enablePodAntiAffinity": {
"type": "boolean"
},
"enablePodDisruptionBudget": {
"type": "boolean"
},
"global": {
"type": "object",
"properties": {
"podSecurityStandards": {
"type": "object",
"properties": {
"enforced": {
"type": "boolean"
}
}
}
}
},
"grafana": {
"type": "object",
"properties": {
Expand Down
3 changes: 3 additions & 0 deletions helm/linkerd-viz/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ enablePodDisruptionBudget: true
# `enabledPSP` is set to true on the control plane install. Note PSP has been
# deprecated since k8s v1.21
enablePSP: false
global:
podSecurityStandards:
enforced: false

# -- url of external prometheus instance
prometheusUrl: ""
Expand Down
7 changes: 3 additions & 4 deletions vendir.lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ apiVersion: vendir.k14s.io/v1alpha1
directories:
- contents:
- git:
commitTitle: Merge remote-tracking branch 'upstream/release/stable-2.13' into
stable-2.13.x
sha: ea513a4b04dd1515dec9e6ee0b44cafa4785fd63
commitTitle: add PSS flag for PSP->PSS migration (#559)...
sha: 81d4bbad3f3b9c4628b62134b014859c4e80ad15
tags:
- stable-2.10.1-2949-gea513a4b0
- stable-2.10.1-2950-g81d4bbad3
path: linkerd
path: vendor
- contents:
Expand Down
Loading