Skip to content
Draft
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
19 changes: 19 additions & 0 deletions applications/kserve/kserve/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,25 @@ patches:
seccompProfile:
type: RuntimeDefault

# Make the KServe storage initializer init container restricted-PSS compatible
- patch: |
apiVersion: serving.kserve.io/v1alpha1
kind: ClusterStorageContainer
metadata:
name: default
namespace: kubeflow
spec:
container:
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
runAsNonRoot: true
runAsUser: 1000
seccompProfile:
type: RuntimeDefault

# Delete ALL insecure LLMInferenceServiceConfig resources
# IPC_LOCK, SYS_RAWIO, NET_RAW capabilities, runAsNonRoot: false
# Ref: https://github.com/kubeflow/community-distribution/issues/3290
Expand Down
Loading