Skip to content

Commit db28787

Browse files
committed
workflows: Remove coverage for node encryption in e2e tests
Signed-off-by: Paul Chaignon <paul.chaignon@gmail.com>
1 parent b4a1497 commit db28787

5 files changed

Lines changed: 0 additions & 16 deletions

File tree

.github/actions/cilium-config/action.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ inputs:
3434
encryption:
3535
description: '"ipsec", "wireguard" or empty'
3636
default: ''
37-
encryption-node:
38-
description: 'Enable node-to-node encryption (WireGuard only)'
39-
default: 'false'
4037
encryption-strict-egress:
4138
description: 'Enable strict mode egress encryption'
4239
default: ''
@@ -197,9 +194,6 @@ runs:
197194
ENCRYPT=""
198195
if [ "${{ inputs.encryption }}" != "" ]; then
199196
ENCRYPT="--helm-set=encryption.enabled=true --helm-set=encryption.type=${{ inputs.encryption }}"
200-
if [ "${{ inputs.encryption-node }}" != "" ]; then
201-
ENCRYPT+=" --helm-set=encryption.nodeEncryption=${{ inputs.encryption-node }}"
202-
fi
203197
if [ "${{ inputs.encryption-strict-egress }}" != "" ]; then
204198
ENCRYPT+=" --helm-set=encryption.strictMode.egress.enabled=${{ inputs.encryption-strict-egress }}"
205199
ENCRYPT+=" --helm-set=encryption.strictMode.egress.cidr=10.244.0.0/16"

.github/actions/e2e/kube-proxy.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
kpr: 'false'
4343
tunnel: 'disabled'
4444
encryption: 'wireguard'
45-
encryption-node: 'false'
4645
encryption-strict-mode: 'true'
4746
misc: 'socketLB.enabled=true'
4847
local-redirect-policy: 'true'

.github/actions/e2e/wireguard.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
secondary-network: 'true'
77
tunnel: 'vxlan'
88
encryption: 'wireguard'
9-
encryption-node: 'false'
109
lb-mode: 'snat'
1110
endpoint-routes: 'true'
1211
egress-gateway: 'true'
@@ -21,7 +20,6 @@
2120
secondary-network: 'true'
2221
tunnel: 'vxlan'
2322
encryption: 'wireguard'
24-
encryption-node: 'true'
2523
lb-mode: 'snat'
2624
egress-gateway: 'true'
2725
ingress-controller: 'true'
@@ -38,7 +36,6 @@
3836
secondary-network: 'true'
3937
tunnel: 'disabled'
4038
encryption: 'wireguard'
41-
encryption-node: 'true'
4239
encryption-strict-egress: 'true'
4340
lb-mode: 'snat'
4441
egress-gateway: 'true'
@@ -55,7 +52,6 @@
5552
tunnel: 'geneve'
5653
lb-mode: 'snat'
5754
encryption: 'wireguard'
58-
encryption-node: 'false'
5955
host-fw: 'true'
6056
ciliumendpointslice: 'true'
6157
ingress-controller: 'true'
@@ -82,7 +78,6 @@
8278
secondary-network: 'true'
8379
tunnel: 'vxlan'
8480
encryption: 'wireguard'
85-
encryption-node: 'false'
8681
encryption-strict-ingress: 'true'
8782
# Without strict egress encryption we observed unencrytped host-to-pod packets arriving at cil_from_overlay
8883
# during startup. This only seems to happen while the agent is still setting up the datapath, so possibly a
@@ -99,7 +94,6 @@
9994
secondary-network: 'true'
10095
tunnel: 'disabled'
10196
encryption: 'wireguard'
102-
encryption-node: 'false'
10397
encryption-strict-ingress: 'true'
10498
encryption-strict-egress: 'true'
10599
# Strict ingress encryption in native routing mode is new in this release, so

.github/workflows/conformance-ipsec-e2e.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@ jobs:
200200
lb-mode: ${{ matrix.lb-mode }}
201201
lb-acceleration: ${{ matrix.lb-acceleration }}
202202
encryption: 'ipsec'
203-
encryption-node: ${{ matrix.encryption-node }}
204203
egress-gateway: ${{ matrix.egress-gateway }}
205204
host-fw: ${{ matrix.host-fw }}
206205
ingress-controller: ${{ matrix.ingress-controller }}

.github/workflows/tests-e2e-upgrade.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,6 @@ jobs:
348348
lb-mode: ${{ matrix.lb-mode }}
349349
lb-acceleration: ${{ matrix.lb-acceleration }}
350350
encryption: ${{ matrix.encryption }}
351-
encryption-node: ${{ matrix.encryption-node }}
352351
encryption-strict-egress: ${{ matrix.encryption-strict-egress }}
353352
encryption-strict-ingress: ${{ matrix.encryption-strict-ingress }}
354353
egress-gateway: ${{ matrix.egress-gateway }}
@@ -380,7 +379,6 @@ jobs:
380379
lb-mode: ${{ matrix.lb-mode }}
381380
lb-acceleration: ${{ matrix.lb-acceleration }}
382381
encryption: ${{ matrix.encryption }}
383-
encryption-node: ${{ matrix.encryption-node }}
384382
encryption-strict-egress: ${{ matrix.encryption-strict-egress }}
385383
encryption-strict-ingress: ${{ matrix.encryption-strict-ingress }}
386384
egress-gateway: ${{ matrix.egress-gateway }}

0 commit comments

Comments
 (0)