diff --git a/openvswitch/Chart.yaml b/openvswitch/Chart.yaml index 93a655174..c1bc95f15 100644 --- a/openvswitch/Chart.yaml +++ b/openvswitch/Chart.yaml @@ -15,7 +15,7 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm OpenVSwitch name: openvswitch -version: 0.1.19 +version: 0.1.20 home: http://openvswitch.org icon: https://www.openstack.org/themes/openstack/images/project-mascots/Neutron/OpenStack_Project_Neutron_vertical.png sources: diff --git a/openvswitch/values_overrides/ubuntu_focal.yaml b/openvswitch/values_overrides/ubuntu_focal.yaml new file mode 100644 index 000000000..0b23e52dd --- /dev/null +++ b/openvswitch/values_overrides/ubuntu_focal.yaml @@ -0,0 +1,6 @@ +--- +images: + tags: + openvswitch_db_server: docker.io/openstackhelm/openvswitch:latest-ubuntu_focal + openvswitch_vswitchd: docker.io/openstackhelm/openvswitch:latest-ubuntu_focal +... diff --git a/openvswitch/values_overrides/ubuntu_jammy.yaml b/openvswitch/values_overrides/ubuntu_jammy.yaml new file mode 100644 index 000000000..eab896ed4 --- /dev/null +++ b/openvswitch/values_overrides/ubuntu_jammy.yaml @@ -0,0 +1,6 @@ +--- +images: + tags: + openvswitch_db_server: docker.io/openstackhelm/openvswitch:latest-ubuntu_jammy + openvswitch_vswitchd: docker.io/openstackhelm/openvswitch:latest-ubuntu_jammy +... diff --git a/releasenotes/notes/openvswitch.yaml b/releasenotes/notes/openvswitch.yaml index 5d6d24511..b2d8e0b52 100644 --- a/releasenotes/notes/openvswitch.yaml +++ b/releasenotes/notes/openvswitch.yaml @@ -20,4 +20,5 @@ openvswitch: - 0.1.17 Add buffer to wait for potential new CTL file before running chown - 0.1.18 Add value for extra poststart command - 0.1.19 Add check for cgroups v2 file structure + - 0.1.20 Add Ubuntu Focal and Ubuntu Jammy overrides ...