Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Hadlaw <[email protected]>
  • Loading branch information
tommyp1ckles committed Mar 9, 2024
1 parent d342d66 commit 2e15f08
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/conformance-13.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ jobs:
encryption-type: ipsec
tunnel-mode: vxlan
nodeport: true
l7: true
ingress: true

- name: 'Wireguard'
kube-proxy: true
Expand All @@ -59,6 +61,8 @@ jobs:
encryption-type: wireguard
tunnel-mode: vxlan
nodeport: true
l7: true
ingress: false

- name: 'IPSEC'
kube-proxy: true
Expand All @@ -72,7 +76,8 @@ jobs:
encryption-type: ipsec
tunnel-mode: vxlan
nodeport: false

l7: true
ingress: false

steps:
- name: Checkout
Expand Down Expand Up @@ -116,11 +121,12 @@ jobs:
--set kubeProxyReplacement=${{ matrix.config.kube-proxy-replacement }} \
--set socketLB.enabled=${{ matrix.config.socketlb }} \
--set ipam.mode=${{ matrix.config.ipam-mode }} \
--set ingressController.enabled=true \
--set ingressController.enabled=${{ matrix.config.ingress }} \
--set encryption.enabled=${{ matrix.config.encryption-enabled }} \
--set encryption.type=${{ matrix.config.encryption-type }} \
--set tunnelProtocol=${{ matrix.config.tunnel-mode }} \
--set nodePort.enabled=${{ matrix.config.nodeport }}
--set nodePort.enabled=${{ matrix.config.nodeport }} \
--set l7Proxy=${{ matrix.config.l7 }}
cilium-cli status --wait
- name: Run E2E Connectivity Tests
Expand Down

0 comments on commit 2e15f08

Please sign in to comment.