Merge "make ovn db file path as configurable"

This commit is contained in:
Zuul 2024-04-09 18:02:33 +00:00 committed by Gerrit Code Review
commit 3e3618bbd9
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
...