-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: updates the test bundle definitions and use latest/edge for tests
This commit updates the many bundle defintions in tests/integration/bundles/ to match the latest changes to the repository. At the same time it changes the bundle that is used for running repository level integration tests from 1.7/stable to latest/edge to be able to test the kfp-operators and all other related charms with the latest changes.
- Loading branch information
Showing
5 changed files
with
200 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
153 changes: 153 additions & 0 deletions
153
tests/integration/bundles/kfp_1.8_stable_install.yaml.j2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
bundle: kubernetes | ||
applications: | ||
argo-controller: | ||
charm: argo-controller | ||
channel: 3.3/stable | ||
scale: 1 | ||
argo-server: | ||
charm: argo-server | ||
channel: 3.3/stable | ||
scale: 1 | ||
envoy: | ||
charm: envoy | ||
channel: 1.12/stable | ||
scale: 1 | ||
istio-ingressgateway: | ||
charm: istio-gateway | ||
channel: 1.17/stable | ||
scale: 1 | ||
options: | ||
kind: ingress | ||
trust: true | ||
istio-pilot: | ||
charm: istio-pilot | ||
channel: 1.17/stable | ||
scale: 1 | ||
options: | ||
default-gateway: kubeflow-gateway | ||
trust: true | ||
kfp-db: | ||
charm: mysql-k8s | ||
channel: 8.0/stable | ||
scale: 1 | ||
options: | ||
profile: testing | ||
trust: true | ||
mlmd: | ||
charm: minio | ||
channel: 1.14/stable | ||
scale: 1 | ||
minio: | ||
charm: minio | ||
channel: ckf-1.8/stable | ||
scale: 1 | ||
kubeflow-profiles: | ||
charm: kubeflow-profiles | ||
channel: 1.8/stable | ||
scale: 1 | ||
trust: true | ||
kubeflow-roles: | ||
charm: kubeflow-roles | ||
channel: 1.8/stable | ||
scale: 1 | ||
trust: true | ||
{%- if local_build == false %} | ||
kfp-api: | ||
charm: kfp-api | ||
channel: 2.0/stable | ||
scale: 1 | ||
trust: true | ||
kfp-metadata-writer: | ||
charm: kfp-metadata-writer | ||
channel: 2.0/stable | ||
scale: 1 | ||
trust: true | ||
kfp-persistence: | ||
charm: kfp-persistence | ||
channel: 2.0/stable | ||
scale: 1 | ||
trust: true | ||
kfp-schedwf: | ||
charm: kfp-schedwf | ||
channel: 2.0/stable | ||
scale: 1 | ||
trust: true | ||
kfp-ui: | ||
charm: kfp-ui | ||
channel: 2.0/stable | ||
scale: 1 | ||
trust: true | ||
kfp-viewer: | ||
charm: kfp-viewer | ||
channel: 2.0/stable | ||
scale: 1 | ||
trust: true | ||
kfp-viz: | ||
charm: kfp-viz | ||
channel: 2.0/stable | ||
scale: 1 | ||
trust: true | ||
{% else %} | ||
kfp-api: | ||
charm: {{ kfp_api }} | ||
resources: {{ kfp_api_resources }} | ||
scale: 1 | ||
trust: true | ||
kfp-metadata-writer: | ||
charm: {{ kfp_metadata_writer }} | ||
resources: {{ kfp_metadata_writer_resources }} | ||
scale: 1 | ||
trust: true | ||
kfp-persistence: | ||
charm: {{ kfp_persistence }} | ||
resources: {{ kfp_persistence_resources }} | ||
scale: 1 | ||
trust: true | ||
kfp-schedwf: | ||
charm: {{ kfp_schedwf }} | ||
resources: {{ kfp_schedwf_resources }} | ||
scale: 1 | ||
trust: true | ||
kfp-ui: | ||
charm: {{ kfp_ui }} | ||
resources: {{ kfp_ui_resources }} | ||
scale: 1 | ||
trust: true | ||
kfp-viewer: | ||
charm: {{ kfp_viewer }} | ||
resources: {{ kfp_viewer_resources }} | ||
scale: 1 | ||
trust: true | ||
kfp-viz: | ||
charm: {{ kfp_viz }} | ||
resources: {{ kfp_viz_resources }} | ||
scale: 1 | ||
trust: true | ||
{%- endif %} | ||
relations: | ||
- - kfp-api:kfp-api | ||
- kfp-persistence:kfp-api | ||
- - kfp-api:kfp-viz | ||
- kfp-viz:kfp-viz | ||
- - istio-pilot:istio-pilot | ||
- istio-ingressgateway:istio-pilot | ||
- - kfp-api:relational-db | ||
- kfp-db:database | ||
- - kfp-api:object-storage | ||
- minio:object-storage | ||
- - istio-pilot:ingress | ||
- kfp-ui:ingress | ||
- - istio-pilot:ingress | ||
- kfp-metadata-writer:ingress | ||
- - mlmd:grpc | ||
- kfp-metadata-writer:grpc | ||
- - mlmd:grpc | ||
- envoy:grpc | ||
- - istio-pilot:ingress | ||
- envoy:ingress | ||
- - kfp-api:kfp-api | ||
- kfp-ui:kfp-api | ||
- - kfp-ui:object-storage | ||
- minio:object-storage | ||
- - argo-controller:object-storage | ||
- minio:object-storage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters