We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3791ba2 commit bcaa69fCopy full SHA for bcaa69f
.github/workflows/ci.yml
@@ -10,13 +10,23 @@ on:
10
11
jobs:
12
13
+
14
test-e2e:
15
name: Run end-to-end tests
16
runs-on: ubuntu-latest
17
strategy:
18
matrix:
19
k3s-version: [ v1.27.1 ]
20
steps:
21
+ - name: Public IP
22
+ id: ip
23
+ uses: haythem/[email protected]
24
25
+ # - name: See IP Addresses
26
+ # run: |
27
+ # echo ${{ steps.ip.outputs.ipv4 }}
28
+ # echo ${{ steps.ip.outputs.ipv6 }}
29
30
- name: Install k3d
31
run: |
32
set -x
@@ -59,7 +69,7 @@ jobs:
59
69
60
70
ARGO_CD_SERVER_ADDR=127.0.0.1:51212 make start-e2e &
61
71
62
- OVERRIDE_APISERVER_ADDR_SOURCE="0.0.0.0" OVERRIDE_APISERVER_ADDR_DEST="192.168.8.152" make test-e2e
72
+ OVERRIDE_APISERVER_ADDR_SOURCE="0.0.0.0" OVERRIDE_APISERVER_ADDR_DEST="${{ steps.ip.outputs.ipv4 }}" make test-e2e
63
73
64
74
make e2e-reset
65
75
pkill go
0 commit comments