Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

workflows: test stable and edge #29

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
11 changes: 9 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ on:

jobs:
deploy:
strategy:
matrix:
risk:
- stable
- edge
name: deploy
runs-on: ubuntu-latest
steps:
Expand All @@ -16,7 +21,7 @@ jobs:
with:
provider: microk8s
channel: 1.26-strict/stable
juju-channel: 3.1/stable
juju-channel: 3.2/stable
microk8s-addons: hostpath-storage dns rbac metallb:10.64.140.40-10.64.140.49
- name: Install dependencies
run: |
Expand All @@ -25,7 +30,9 @@ jobs:
- name: Apply terraform
run: |
terraform init
terraform apply -auto-approve
terraform apply -auto-approve \
-var "ovn-channel=23.03/${{ matrix.risk }}" \
-var "openstack-channel=2023.1/${{ matrix.risk }}"
juju model-config -m openstack automatically-retry-hooks=true
juju-wait -vw -m openstack -t 3600 -x cinder-ceph -r 3
- name: Collect juju status
Expand Down