From 7b88584d3d8d67706e1948f0f8c54cb562af6765 Mon Sep 17 00:00:00 2001 From: Federico Paolinelli Date: Fri, 2 Dec 2022 10:33:24 +0100 Subject: [PATCH] Bump the metallb version Including VRF support in the BGPPeer CRD. Signed-off-by: Federico Paolinelli --- .github/workflows/metallb_e2e.yml | 2 +- bin/metallb-operator.yaml | 4 ++++ bundle/manifests/metallb.io_bgppeers.yaml | 4 ++++ config/crd/bases/metallb.io_bgppeers.yaml | 4 ++++ hack/common.sh | 2 +- 5 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/metallb_e2e.yml b/.github/workflows/metallb_e2e.yml index fadde6382..348ebe414 100644 --- a/.github/workflows/metallb_e2e.yml +++ b/.github/workflows/metallb_e2e.yml @@ -49,7 +49,7 @@ jobs: with: repository: metallb/metallb path: metallb - ref: e4c0a7b1b01d4ac978deaa2af4227403b43d759f + ref: 7c1a17eafcc6b6bace1271042143d01df11db2c9 - name: Checkout MetalLB v0.12.1 uses: actions/checkout@v2 with: diff --git a/bin/metallb-operator.yaml b/bin/metallb-operator.yaml index 38c70e0bd..f9e2480ff 100644 --- a/bin/metallb-operator.yaml +++ b/bin/metallb-operator.yaml @@ -830,6 +830,10 @@ spec: sourceAddress: description: Source address to use when establishing the session. type: string + vrf: + description: To set if we want to peer with the BGPPeer using an interface + belonging to a host vrf + type: string required: - myASN - peerASN diff --git a/bundle/manifests/metallb.io_bgppeers.yaml b/bundle/manifests/metallb.io_bgppeers.yaml index bc32b87fb..962be6015 100644 --- a/bundle/manifests/metallb.io_bgppeers.yaml +++ b/bundle/manifests/metallb.io_bgppeers.yaml @@ -287,6 +287,10 @@ spec: sourceAddress: description: Source address to use when establishing the session. type: string + vrf: + description: To set if we want to peer with the BGPPeer using an interface + belonging to a host vrf + type: string required: - myASN - peerASN diff --git a/config/crd/bases/metallb.io_bgppeers.yaml b/config/crd/bases/metallb.io_bgppeers.yaml index 32c78096b..b829bce27 100644 --- a/config/crd/bases/metallb.io_bgppeers.yaml +++ b/config/crd/bases/metallb.io_bgppeers.yaml @@ -275,6 +275,10 @@ spec: sourceAddress: description: Source address to use when establishing the session. type: string + vrf: + description: To set if we want to peer with the BGPPeer using an interface + belonging to a host vrf + type: string required: - myASN - peerASN diff --git a/hack/common.sh b/hack/common.sh index 1565a060e..dce2d2c53 100755 --- a/hack/common.sh +++ b/hack/common.sh @@ -17,7 +17,7 @@ export PATH=$PATH:$GOPATH/bin mkdir -p _cache -export METALLB_COMMIT_ID="e4c0a7b1b01d4ac978deaa2af4227403b43d759f" +export METALLB_COMMIT_ID="7c1a17eafcc6b6bace1271042143d01df11db2c9" export METALLB_PATH=_cache/metallb export METALLB_SC_FILE=$(dirname "$0")/securityContext.yaml