From 8880c86b8924ece7bd9daf3b1f5e30a21e562e2c Mon Sep 17 00:00:00 2001 From: Ales Stimec Date: Mon, 9 Dec 2024 16:17:22 +0100 Subject: [PATCH] fix: jaas integration test --- .github/workflows/test_integration_jaas.yaml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test_integration_jaas.yaml b/.github/workflows/test_integration_jaas.yaml index 876ce036..5787bf5d 100644 --- a/.github/workflows/test_integration_jaas.yaml +++ b/.github/workflows/test_integration_jaas.yaml @@ -28,7 +28,7 @@ jobs: # Ensure project builds before running test build: name: Build-JAAS - runs-on: ubuntu-latest + runs-on: [self-hosted, jammy, x64] timeout-minutes: 5 steps: - uses: actions/checkout@v4 @@ -41,7 +41,7 @@ jobs: test: name: Integration-JAAS needs: build - runs-on: ubuntu-latest + runs-on: [self-hosted, jammy, x64] strategy: fail-fast: false timeout-minutes: 60 @@ -55,6 +55,8 @@ jobs: with: terraform_version: "1.9.*" terraform_wrapper: false + - run: | + sudo apt-get install docker-compose-plugin # Starting JAAS will start the JIMM controller and dependencies and create a Juju controller on LXD and connect it to JIMM. - name: Setup JAAS uses: canonical/jimm/.github/actions/test-server@v3 @@ -68,11 +70,13 @@ jobs: sudo snap install microk8s --channel=1.28-strict/stable sudo usermod -a -G snap_microk8s $USER sudo chown -R $USER ~/.kube - sudo microk8s.enable dns storage - sudo microk8s.enable dns local-storage + sudo microk8s.enable dns + sudo microk8s.enable storage + sudo microk8s.enable hostpath-storage sudo -g snap_microk8s -E microk8s status --wait-ready --timeout=600 + sudo microk8s.config view | tee /home/$USER/microk8s-config.yaml echo "MICROK8S_CONFIG<> $GITHUB_ENV - sudo microk8s.config view >> $GITHUB_ENV + echo "$(cat microk8s-config.yaml)" >> $GITHUB_ENV echo "EOF" >> $GITHUB_ENV - name: Create additional networks when testing with LXD run: |