Skip to content

Commit e6126e9

Browse files
Merge pull request opendatahub-io#67 from rimolive/rmartine-odh
Move Visualization Server and Viewer CRD to a separate overlay
2 parents 831c1e6 + 8875b24 commit e6126e9

11 files changed

+33
-15
lines changed

manifests/opendatahub/base/kustomization.yaml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,20 @@ kind: Kustomization
44

55
resources:
66
# CustomResourceDefinitions
7-
- ./customresourcedefinitions/viewers.yaml
87
- ./customresourcedefinitions/scheduledworkflows.yaml
98

109
# Deployments
1110
- ./deployments/ds-pipeline-persistenceagent.yaml
1211
- ./deployments/ds-pipeline-scheduledworkflow.yaml
13-
- ./deployments/ds-pipeline-viewer-crd.yaml
14-
- ./deployments/ds-pipeline-visualizationserver.yaml
1512
- ./deployments/ds-pipeline.yaml
1613

1714
# Rolebindings
1815
- ./rolebindings/ds-pipeline-scheduledworkflow-binding.yaml
19-
- ./rolebindings/ds-pipeline-viewer-crd-binding.yaml
2016
- ./rolebindings/ds-pipeline.yaml
2117
- ./rolebindings/pipeline-runner-binding.yaml
2218

2319
# Roles
2420
- ./roles/ds-pipeline-scheduledworkflow-role.yaml
25-
- ./roles/ds-pipeline-viewer-controller-role.yaml
2621
- ./roles/ds-pipeline.yaml
2722
- ./roles/pipeline-runner.yaml
2823

@@ -36,14 +31,10 @@ resources:
3631
- ./serviceaccounts/ds-pipeline-container-builder.yaml
3732
- ./serviceaccounts/ds-pipeline-persistenceagent.yaml
3833
- ./serviceaccounts/ds-pipeline-scheduledworkflow.yaml
39-
- ./serviceaccounts/ds-pipeline-viewer-crd-service-account.yaml
40-
- ./serviceaccounts/ds-pipeline-viewer.yaml
41-
- ./serviceaccounts/ds-pipeline-visualizationserver.yaml
4234
- ./serviceaccounts/ds-pipeline.yaml
4335
- ./serviceaccounts/pipeline-runner.yaml
4436

4537
# Services
46-
- ./services/ds-pipeline-visualizationserver.yaml
4738
- ./services/ds-pipeline.yaml
4839

4940
# Monitoring
@@ -103,12 +94,6 @@ images:
10394
- name: scheduledworkflow
10495
newName: quay.io/internaldatahub/scheduledworkflow
10596
newTag: 1.1.0
106-
- name: viewer-crd-controller
107-
newName: gcr.io/ml-pipeline/viewer-crd-controller
108-
newTag: 1.7.0
109-
- name: visualization-server
110-
newName: gcr.io/ml-pipeline/visualization-server
111-
newTag: 1.7.0
11297
- name: api-server
11398
newName: quay.io/internaldatahub/api-server
11499
newTag: 1.1.0
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
apiVersion: kustomize.config.k8s.io/v1beta1
3+
kind: Kustomization
4+
5+
resources:
6+
# CustomResourceDefinitions
7+
- ./viewers.yaml
8+
9+
# Deployments
10+
- ./ds-pipeline-viewer-crd-deployment.yaml
11+
- ./ds-pipeline-visualizationserver-deployment.yaml
12+
13+
# Rolebindings
14+
- ./ds-pipeline-viewer-crd-binding.yaml
15+
16+
# Roles
17+
- ./ds-pipeline-viewer-controller-role.yaml
18+
19+
# ServiceAccounts
20+
- ./ds-pipeline-viewer-crd-sa.yaml
21+
- ./ds-pipeline-viewer-sa.yaml
22+
- ./ds-pipeline-visualizationserver-sa.yaml
23+
24+
# Services
25+
- ./ds-pipeline-visualizationserver-svc.yaml
26+
27+
images:
28+
- name: viewer-crd-controller
29+
newName: gcr.io/ml-pipeline/viewer-crd-controller
30+
newTag: 1.7.0
31+
- name: visualization-server
32+
newName: gcr.io/ml-pipeline/visualization-server
33+
newTag: 1.7.0

0 commit comments

Comments
 (0)