mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw.git
synced 2025-11-02 03:37:57 +00:00
[WIFI-3150] Add: external databases as optional dependencies for Helm chart
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -25,3 +25,6 @@ _deps
|
|||||||
test_scripts/curl/token.json
|
test_scripts/curl/token.json
|
||||||
.vscode/c_cpp_properties.json
|
.vscode/c_cpp_properties.json
|
||||||
test_scripts/curl/result.json
|
test_scripts/curl/result.json
|
||||||
|
*.swp
|
||||||
|
helm/charts/*
|
||||||
|
!helm/charts/.gitkeep
|
||||||
|
|||||||
0
helm/.gitkeep
Normal file
0
helm/.gitkeep
Normal file
12
helm/Chart.lock
Normal file
12
helm/Chart.lock
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
dependencies:
|
||||||
|
- name: postgresql
|
||||||
|
repository: https://charts.bitnami.com/bitnami
|
||||||
|
version: 10.9.2
|
||||||
|
- name: mysql
|
||||||
|
repository: https://charts.bitnami.com/bitnami
|
||||||
|
version: 8.8.3
|
||||||
|
- name: mariadb
|
||||||
|
repository: https://charts.bitnami.com/bitnami
|
||||||
|
version: 9.4.2
|
||||||
|
digest: sha256:1fdae7cbea906e41dccd8618ff9e2c68d0c684724ae27c79a12bb6089968df5c
|
||||||
|
generated: "2021-08-17T12:18:40.341427893+03:00"
|
||||||
@@ -1,5 +1,18 @@
|
|||||||
apiVersion: v1
|
apiVersion: v2
|
||||||
appVersion: "1.0"
|
appVersion: "1.0"
|
||||||
description: A Helm chart for Kubernetes
|
description: A Helm chart for Kubernetes
|
||||||
name: ucentralgw
|
name: ucentralgw
|
||||||
version: 0.1.0
|
version: 0.1.0
|
||||||
|
dependencies:
|
||||||
|
- name: postgresql
|
||||||
|
repository: https://charts.bitnami.com/bitnami
|
||||||
|
version: 10.9.2
|
||||||
|
condition: postgresql.enabled
|
||||||
|
- name: mysql
|
||||||
|
repository: https://charts.bitnami.com/bitnami
|
||||||
|
version: 8.8.3
|
||||||
|
condition: mysql.enabled
|
||||||
|
- name: mariadb
|
||||||
|
repository: https://charts.bitnami.com/bitnami
|
||||||
|
version: 9.4.2
|
||||||
|
condition: mariadb.enabled
|
||||||
|
|||||||
@@ -428,3 +428,64 @@ certsCAs:
|
|||||||
L+/DtiR5fDVMNdBSGU89UNTi0wHY9+RFuNlIuvZC+x/swF0V9R5mN+ywquTPtDLA
|
L+/DtiR5fDVMNdBSGU89UNTi0wHY9+RFuNlIuvZC+x/swF0V9R5mN+ywquTPtDLA
|
||||||
5IOM7ItsRmen6u3qu+JXros54e4juQ==
|
5IOM7ItsRmen6u3qu+JXros54e4juQ==
|
||||||
-----END CERTIFICATE-----
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
# PostgreSQL (https://github.com/bitnami/charts/tree/master/bitnami/postgresql)
|
||||||
|
postgresql:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
image:
|
||||||
|
registry: docker.io
|
||||||
|
repository: bitnami/postgresql
|
||||||
|
tag: 11.13.0-debian-10-r0
|
||||||
|
|
||||||
|
postgresqlPostgresPassword: ""
|
||||||
|
postgresqlUsername: postgres
|
||||||
|
postgresqlPassword: ""
|
||||||
|
postgresqlDatabase: ""
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
enabled: true
|
||||||
|
storageClass: ""
|
||||||
|
size: 8Gi
|
||||||
|
|
||||||
|
# MySQL (https://github.com/bitnami/charts/tree/master/bitnami/mysql)
|
||||||
|
mysql:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
image:
|
||||||
|
registry: docker.io
|
||||||
|
repository: bitnami/mysql
|
||||||
|
tag: 8.0.26-debian-10-r10
|
||||||
|
|
||||||
|
auth:
|
||||||
|
rootPassword: ""
|
||||||
|
database: my_database
|
||||||
|
username: ""
|
||||||
|
password: ""
|
||||||
|
|
||||||
|
primary:
|
||||||
|
persistence:
|
||||||
|
enabled: true
|
||||||
|
storageClass: ""
|
||||||
|
size: 8Gi
|
||||||
|
|
||||||
|
# MariaDB (https://github.com/bitnami/charts/tree/master/bitnami/mariadb)
|
||||||
|
mariadb:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
image:
|
||||||
|
registry: docker.io
|
||||||
|
repository: bitnami/mariadb
|
||||||
|
tag: 10.5.12-debian-10-r0
|
||||||
|
|
||||||
|
auth:
|
||||||
|
rootPassword: ""
|
||||||
|
database: my_database
|
||||||
|
username: ""
|
||||||
|
password: ""
|
||||||
|
|
||||||
|
primary:
|
||||||
|
persistence:
|
||||||
|
enabled: true
|
||||||
|
storageClass: ""
|
||||||
|
size: 8Gi
|
||||||
|
|||||||
Reference in New Issue
Block a user