You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.4 KiB
56 lines
1.4 KiB
---
|
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
namespace: kubeflow
|
|
resources:
|
|
- ../katib-cert-manager
|
|
# Kubeflow Katib components.
|
|
- kubeflow-katib-roles.yaml
|
|
- ui-virtual-service.yaml
|
|
- istio-authorizationpolicy.yaml
|
|
images:
|
|
- name: ghcr.io/kubeflow/katib/katib-controller
|
|
newName: ghcr.io/kubeflow/katib/katib-controller
|
|
newTag: v0.18.0
|
|
- name: ghcr.io/kubeflow/katib/katib-db-manager
|
|
newName: ghcr.io/kubeflow/katib/katib-db-manager
|
|
newTag: v0.18.0
|
|
- name: ghcr.io/kubeflow/katib/katib-ui
|
|
newName: ghcr.io/kubeflow/katib/katib-ui
|
|
newTag: v0.18.0
|
|
|
|
patchesStrategicMerge:
|
|
- patches/remove-namespace.yaml
|
|
|
|
patches:
|
|
# Extend RBAC permission list of katib-ui so it can
|
|
# create SubjectAccessReview resources.
|
|
- target:
|
|
kind: ClusterRole
|
|
name: katib-ui
|
|
group: rbac.authorization.k8s.io
|
|
version: v1
|
|
path: patches/ui-rbac.yaml
|
|
# Enable RBAC authz checks in UI's backend.
|
|
- target:
|
|
version: v1
|
|
kind: Deployment
|
|
name: katib-ui
|
|
path: patches/enable-ui-authz-checks.yaml
|
|
# Allow istio sidecar injection in katib-UI Pod.
|
|
- target:
|
|
kind: Deployment
|
|
name: katib-ui
|
|
path: patches/istio-sidecar-injection.yaml
|
|
|
|
vars:
|
|
- fieldref:
|
|
fieldPath: metadata.namespace
|
|
name: KATIB_UI_NAMESPACE
|
|
objref:
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
name: katib-ui
|
|
|
|
configurations:
|
|
- params.yaml
|
|
|