Allow share OVN DB NB/SB socket

This will help other services to access to OVN DB.
So services like Octavia can use OVN Octavia provider agent.

Change-Id: Iddaa6214ece63a5f1e692fe019bcba1b41fdb18f
This commit is contained in:
ricolin 2024-10-02 14:23:43 +08:00
parent 167dd26541
commit 6373f70dbf
4 changed files with 8 additions and 3 deletions

View File

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

View File

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

View File

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

View File

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