Merge "Allow share OVN DB NB/SB socket"

This commit is contained in:
Zuul 2024-10-02 16:39:09 +00:00 committed by Gerrit Code Review
commit 45dad274e5
4 changed files with 8 additions and 3 deletions

View File

@ -15,7 +15,7 @@ apiVersion: v1
appVersion: v23.3.0
description: OpenStack-Helm OVN
name: ovn
version: 0.1.12
version: 0.1.13
home: https://www.ovn.org
icon: https://www.ovn.org/images/ovn-logo.png
sources:

View File

@ -79,7 +79,9 @@ spec:
mountPath: {{ $envAll.Values.volume.ovn_ovsdb_nb.path }}
volumes:
- name: run-openvswitch
emptyDir: {}
hostPath:
path: /run/openvswitch
type: DirectoryOrCreate
- name: ovn-bin
configMap:
name: ovn-bin

View File

@ -79,7 +79,9 @@ spec:
mountPath: {{ $envAll.Values.volume.ovn_ovsdb_sb.path }}
volumes:
- name: run-openvswitch
emptyDir: {}
hostPath:
path: /run/openvswitch
type: DirectoryOrCreate
- name: ovn-bin
configMap:
name: ovn-bin

View File

@ -13,4 +13,5 @@ ovn:
- 0.1.10 Fix typo in the controller init script
- 0.1.11 Use quay.io/airshipit/kubernetes-entrypoint:latest-ubuntu_focal by default
- 0.1.12 Fix oci_image_registry secret name
- 0.1.13 Allow share OVN DB NB/SB socket
...