Skip to content
Open
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
1 change: 0 additions & 1 deletion manifests/v1beta1/components/controller/controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ spec:
securityContext:
runAsNonRoot: true
allowPrivilegeEscalation: false
runAsUser: 1000
seccompProfile:
type: RuntimeDefault
capabilities:
Expand Down
1 change: 0 additions & 1 deletion manifests/v1beta1/components/db-manager/db-manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ spec:
securityContext:
runAsNonRoot: true
allowPrivilegeEscalation: false
runAsUser: 1000
seccompProfile:
type: RuntimeDefault
capabilities:
Expand Down
1 change: 0 additions & 1 deletion manifests/v1beta1/components/ui/ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ spec:
securityContext:
runAsNonRoot: true
allowPrivilegeEscalation: false
runAsUser: 1000
seccompProfile:
type: RuntimeDefault
capabilities:
Expand Down
10 changes: 8 additions & 2 deletions manifests/v1beta1/installs/katib-openshift/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ resources:
- ../../components/crd/
# Katib DB manager.
- ../../components/db-manager/
# Katib DB mysql.
- ../../components/mysql/
# Katib DB postgres.
- ../../components/postgres/
# Katib UI.
- ../../components/ui/
# Katib webhooks.
Expand Down Expand Up @@ -67,3 +67,9 @@ patches:
kind: MutatingWebhookConfiguration
name: katib.kubeflow.org
version: v1
- path: ./patches/db-manager.yaml
target:
group: apps
kind: Deployment
name: katib-db-manager
version: v1
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
- op: replace
path: /spec/template/spec/containers/0/env
value:
- name: DB_NAME
value: "postgres"
- name: DB_PASSWORD
value: "katib"
Loading