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.
30 lines
761 B
30 lines
761 B
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
# Include core model registry components (for profile namespace)
|
|
resources:
|
|
# Database and core model registry components
|
|
- ../db
|
|
# Istio networking components
|
|
- ../../options/istio
|
|
|
|
# Patches for deployments
|
|
patches:
|
|
- path: patch-db-deployment.yaml
|
|
target:
|
|
group: apps
|
|
version: v1
|
|
kind: Deployment
|
|
name: model-registry-db
|
|
- path: patch-model-registry-deployment.yaml
|
|
target:
|
|
group: apps
|
|
version: v1
|
|
kind: Deployment
|
|
name: model-registry-deployment
|
|
|
|
# Common labels for all resources
|
|
commonLabels:
|
|
app.kubernetes.io/name: model-registry
|
|
app.kubernetes.io/component: model-registry-core
|
|
app.kubernetes.io/part-of: kubeflow |