Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci, fix: change profile of mysql-k8s to testing, skip artefact collection on success #624

Merged
merged 5 commits into from
Nov 27, 2024
Merged
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
4 changes: 3 additions & 1 deletion .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ jobs:
run: juju status
if: failure()

# Collect debug artefacts only on failure || cancelled as the CI for this repository
# in particular struggles with storage limitations.
- name: Collect charm debug artifacts
uses: canonical/kubeflow-ci/actions/dump-charm-debug-artifacts@main
if: always()
if: failure() || cancelled()
8 changes: 7 additions & 1 deletion tests/integration/bundles/kfp_1.8_stable_install.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ applications:
argo-controller: { charm: ch:argo-controller, channel: 3.3.10/stable, scale: 1, trust: true }
metacontroller-operator: { charm: ch:metacontroller-operator, channel: 3.0/stable, scale: 1, trust: true }
minio: { charm: ch:minio, channel: ckf-1.8/stable, scale: 1 }
kfp-db: { charm: ch:mysql-k8s, channel: 8.0/stable, scale: 1, constraints: mem=2G, trust: true }
mlmd: { charm: ch:mlmd, channel: 1.14/stable, scale: 1 }
envoy: { charm: ch:envoy, channel: 2.0/stable, scale: 1 }
kubeflow-profiles: { charm: ch:kubeflow-profiles, channel: 1.8/stable, scale: 1, trust: true }
Expand All @@ -22,6 +21,13 @@ applications:
options:
default-gateway: kubeflow-gateway
trust: true
kfp-db:
charm: mysql-k8s
channel: 8.0/stable
scale: 1
options:
profile: testing
trust: true
kubeflow-roles:
charm: kubeflow-roles
channel: 1.8/stable
Expand Down
8 changes: 7 additions & 1 deletion tests/integration/bundles/kfp_latest_edge.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ applications:
argo-controller: { charm: ch:argo-controller, channel: latest/edge, scale: 1, trust: true }
metacontroller-operator: { charm: ch:metacontroller-operator, channel: latest/edge, scale: 1, trust: true }
minio: { charm: ch:minio, channel: latest/edge, scale: 1 }
kfp-db: { charm: ch:mysql-k8s, channel: 8.0/stable, scale: 1, constraints: mem=2G, trust: true }
mlmd: { charm: ch:mlmd, channel: latest/edge, scale: 1, trust: true}
envoy: { charm: ch:envoy, channel: latest/edge, scale: 1 }
kubeflow-profiles: { charm: ch:kubeflow-profiles, channel: latest/edge, scale: 1, trust: true }
Expand All @@ -22,6 +21,13 @@ applications:
options:
default-gateway: kubeflow-gateway
trust: true
kfp-db:
charm: mysql-k8s
channel: 8.0/stable
scale: 1
options:
profile: testing
trust: true
kubeflow-roles:
charm: kubeflow-roles
channel: latest/edge
Expand Down
Loading