This is to match the ovn-kubernetes commit https://github.com/ovn-org/ovn-kubernetes/commit/b5b61bc64aae
Without it building the ovn-kubernetes container image fails because the libovsdb modelgen doesn't generate the right type of NB/SB models. Reported-at: https://mail.openvswitch.org/pipermail/ovs-dev/2023-March/402481.html Reported-by: Ilya Maximets <[email protected]> Signed-off-by: Dumitru Ceara <[email protected]> --- .ci/ovn-kubernetes/Dockerfile | 2 +- .github/workflows/ovn-kubernetes.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/ovn-kubernetes/Dockerfile b/.ci/ovn-kubernetes/Dockerfile index 0a958cc81e..01be205429 100644 --- a/.ci/ovn-kubernetes/Dockerfile +++ b/.ci/ovn-kubernetes/Dockerfile @@ -1,5 +1,5 @@ ARG OVNKUBE_COMMIT=master -ARG LIBOVSDB_COMMIT=8081fe24e48f +ARG LIBOVSDB_COMMIT=a6a173993830 FROM fedora:37 AS ovnbuilder diff --git a/.github/workflows/ovn-kubernetes.yml b/.github/workflows/ovn-kubernetes.yml index 63bc44068c..c82b23a1fb 100644 --- a/.github/workflows/ovn-kubernetes.yml +++ b/.github/workflows/ovn-kubernetes.yml @@ -16,7 +16,7 @@ env: GO_VERSION: "1.18.4" K8S_VERSION: v1.24.0 OVNKUBE_COMMIT: "master" - LIBOVSDB_COMMIT: "98c0bad3cff1" + LIBOVSDB_COMMIT: "a6a173993830" KIND_CLUSTER_NAME: ovn KIND_INSTALL_INGRESS: true KIND_ALLOW_SYSTEM_WRITES: true -- 2.31.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
