Skip to content

Commit

Permalink
ci: Disable wireguard in v1.13 conformance datapath
Browse files Browse the repository at this point in the history
ci-datapath-1.13 workflow is failing in the configs with wireguard
enable due to an incompatibility with the L7 proxy:

`level=fatal msg="Wireguard (--enable-wireguard) is not compatible with
L7 proxy (--enable-l7-proxy)" subsys=daemon`

An example of that failure can be found here:
https://github.com/cilium/cilium/actions/runs/4620306511/jobs/8170228050

All the workflow configs with wireguard enabled are changed to disable
encryption.

Signed-off-by: Fabio Falzoi <fabio.falzoi@isovalent.com>
  • Loading branch information
pippolo84 authored and dylandreimerink committed Apr 11, 2023
1 parent 4280579 commit bb7d150
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/conformance-datapath-v1.13.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
kube-proxy: 'iptables'
kpr: 'strict'
tunnel: 'vxlan'
encryption: 'wireguard'
encryption: 'disabled'
lb-mode: 'snat'
endpoint-routes: 'true'

Expand All @@ -157,7 +157,7 @@ jobs:
kube-proxy: 'iptables'
kpr: 'strict'
tunnel: 'disabled'
encryption: 'wireguard'
encryption: 'disabled'
lb-mode: 'snat'
endpoint-routes: 'true'

Expand All @@ -166,15 +166,15 @@ jobs:
kube-proxy: 'none'
kpr: 'strict'
tunnel: 'vxlan'
encryption: 'wireguard'
encryption: 'disabled'
lb-mode: 'snat'

- name: '7'
kernel: 'bpf-next-main'
kube-proxy: 'none'
kpr: 'strict'
tunnel: 'disabled'
encryption: 'wireguard'
encryption: 'disabled'
lb-mode: 'snat'

- name: '8'
Expand Down

0 comments on commit bb7d150

Please sign in to comment.