Skip to content

Commit

Permalink
fix: put microk8s config to envvar
Browse files Browse the repository at this point in the history
  • Loading branch information
anvial committed Oct 8, 2024
1 parent f9421cf commit 51a81b4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,13 @@ jobs:
echo "TEST_PUBLIC_BR=10.170.80.0/24" >> $GITHUB_ENV
- name: "Set additional environment for LXD"
if: ${{ matrix.action-operator.cloud == 'lxd' }}
# language=bash
run: |
echo "MICROK8S_CONFIG<<EOF" >> $GITHUB_ENV
sudo microk8s.config view >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
{
echo "MICROK8S_CONFIG<<EOF"
sudo microk8s.config view
echo EOF
} >> "$GITHUB_ENV"
- run: go mod download
- env:
TF_ACC: "1"
Expand Down

0 comments on commit 51a81b4

Please sign in to comment.