Skip to content

Commit

Permalink
ci: switch kind workflow to new IPsec key system
Browse files Browse the repository at this point in the history
The global IPsec key system is deprecated[^1], prefer the new per-tunnel
key system. This switches most workflows over to the new system, except
conformance-eks which needs[^2] addressed first.

[^1]: cilium/cilium#33504
[^2]: cilium/cilium#32040

Signed-off-by: Tobias Klauser <tobias@cilium.io>
  • Loading branch information
tklauser committed Dec 6, 2024
1 parent 67e130e commit c2716e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/kind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
- name: Install Cilium with IPsec Encryption
run: |
kubectl create -n kube-system secret generic cilium-ipsec-keys \
--from-literal=keys="3 rfc4106(gcm(aes)) $(echo $(dd if=/dev/urandom count=20 bs=1 2> /dev/null | xxd -p -c 64)) 128"
--from-literal=keys="3+ rfc4106(gcm(aes)) $(echo $(dd if=/dev/urandom count=20 bs=1 2> /dev/null | xxd -p -c 64)) 128"
cilium install \
--version=${{ env.cilium_version}} \
--nodes-without-cilium \
Expand Down

0 comments on commit c2716e4

Please sign in to comment.