Skip to content

Commit ef1822f

Browse files
committed
[nova] use new utils and don't add backup users to proxysql config
Don't add backup and metrics users to proxysql.cnf, as it may cause duplicates, which are not allowed since ProxySQL 3.0.3 * Bump `utils` dependency to 0.32.0 * Add `proxysql.ignore_users` with `backup` and `metrics` users
1 parent ca2358e commit ef1822f

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

openstack/nova/Chart.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies:
2222
version: 0.6.10
2323
- name: utils
2424
repository: oci://keppel.eu-de-1.cloud.sap/ccloud-helm
25-
version: 0.29.0
25+
version: 0.32.0
2626
- name: mariadb
2727
repository: oci://keppel.eu-de-1.cloud.sap/ccloud-helm
2828
version: 0.27.2
@@ -41,5 +41,5 @@ dependencies:
4141
- name: redis
4242
repository: oci://keppel.eu-de-1.cloud.sap/ccloud-helm
4343
version: 2.2.18
44-
digest: sha256:b27d124efd86a9f9b35f15f4b2efda5ad774394ab2b4379cb062b20f7f0a2d5d
45-
generated: "2025-10-07T16:14:25.360579+03:00"
44+
digest: sha256:7d552a22802f40de6ca4e132c39946cfbc782b3873f6429f223522d2c9bb56e1
45+
generated: "2025-11-21T18:27:55.198567+02:00"

openstack/nova/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: v2
33
description: A Helm chart for Kubernetes
44
name: nova
55
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Nova/OpenStack_Project_Nova_mascot.png
6-
version: 0.6.1
6+
version: 0.6.2
77
appVersion: "bobcat"
88
dependencies:
99
- name: mariadb
@@ -37,7 +37,7 @@ dependencies:
3737
version: 0.6.10
3838
- name: utils
3939
repository: oci://keppel.eu-de-1.cloud.sap/ccloud-helm
40-
version: 0.29.0
40+
version: 0.32.0
4141
- name: mariadb
4242
alias: mariadb_cell2
4343
condition: mariadb_cell2.enabled

openstack/nova/ci/test-values.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,18 @@ pxc_db:
6161
aws_access_key_id: topSecret!
6262
aws_secret_access_key: topSecret!
6363

64+
proxysql:
65+
mode: host_alias
66+
6467
mariadb:
6568
enabled: true
6669
root_password: rootrootCell1
6770
backup_v2:
6871
enabled: false
6972
users:
73+
backup:
74+
name: backup
75+
password: passwordBackup
7076
nova:
7177
name: nova
7278
password: passwordCell1
@@ -106,6 +112,9 @@ mariadb_api:
106112
backup_v2:
107113
enabled: false
108114
users:
115+
backup:
116+
name: backup
117+
password: passwordBackupApi
109118
nova_api:
110119
name: nova_api
111120
password: passwordApi

openstack/nova/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -778,6 +778,10 @@ max_overflow: 5
778778
proxysql:
779779
mode: ""
780780
native_sidecar: true
781+
ignore_users:
782+
- backup
783+
- metrics
784+
- metis
781785

782786
mariadb:
783787
enabled: false

0 commit comments

Comments
 (0)