File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff line change 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'
Original file line number Diff line number Diff line change 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'
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'
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'
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'
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
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
Original file line number Diff line number Diff 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 }}
Original file line number Diff line number Diff 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 }}
You can’t perform that action at this time.
0 commit comments