make ovn db file path as configurable

Change-Id: I8b0f5c0bda2f1305e0460adc35e85b130f4cf9ff
This commit is contained in:
root 2024-04-01 20:27:28 +11:00
parent cfed816a9a
commit d2039d4cf5
5 changed files with 6 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.8
version: 0.1.9
home: https://www.ovn.org
icon: https://www.ovn.org/images/ovn-logo.png
sources:

View File

@ -76,7 +76,7 @@ spec:
- name: run-openvswitch
mountPath: /run/openvswitch
- name: data
mountPath: /var/lib/ovn
mountPath: {{ $envAll.Values.volume.ovn_ovsdb_nb.path }}
volumes:
- name: run-openvswitch
emptyDir: {}

View File

@ -76,7 +76,7 @@ spec:
- name: run-openvswitch
mountPath: /run/openvswitch
- name: data
mountPath: /var/lib/ovn
mountPath: {{ $envAll.Values.volume.ovn_ovsdb_sb.path }}
volumes:
- name: run-openvswitch
emptyDir: {}

View File

@ -50,10 +50,12 @@ labels:
volume:
ovn_ovsdb_nb:
path: /var/lib/ovn
enabled: true
class_name: general
size: 5Gi
ovn_ovsdb_sb:
path: /var/lib/ovn
enabled: true
class_name: general
size: 5Gi

View File

@ -9,4 +9,5 @@ ovn:
- 0.1.6 Fix ovsdb port number
- 0.1.7 Use host network for ovn controller pods
- 0.1.8 Fix attaching interfaces to the bridge
- 0.1.9 Make ovn db file path as configurable
...