Skip to content

Commit 22b1018

Browse files
authored
Add proxy chart for Mariadb (#2)
* Add proxy chart for Mariadb * rename folder * Activate monitoring * try password job * Structure * no update * monitoring label
1 parent c94bdf3 commit 22b1018

File tree

3 files changed

+49
-0
lines changed

3 files changed

+49
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,3 +245,7 @@ com_crashlytics_export_strings.xml
245245
!.env.example
246246
#sql files
247247
docker-entrypoint-initdb.d/
248+
249+
# Helm
250+
charts/*/Chart.lock
251+
charts/*/template.yaml

charts/mariadb/Chart.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
apiVersion: v2
2+
appVersion: 11.4.6
3+
dependencies:
4+
- name: common
5+
repository: oci://registry-1.docker.io/bitnamicharts
6+
tags:
7+
- bitnami-common
8+
version: 2.x.x
9+
description: MariaDB is an open source, community-developed SQL database server that
10+
is widely in use around the world due to its enterprise features, flexibility, and
11+
collaboration with leading tech firms.
12+
home: https://bitnami.com
13+
icon: https://dyltqmyl993wv.cloudfront.net/assets/stacks/mariadb/img/mariadb-stack-220x234.png
14+
keywords:
15+
- mariadb
16+
- mysql
17+
- database
18+
- sql
19+
- prometheus
20+
maintainers:
21+
- name: Broadcom, Inc. All Rights Reserved.
22+
url: https://github.com/bitnami/charts
23+
name: mariadb
24+
sources:
25+
- https://github.com/bitnami/charts/tree/main/bitnami/mariadb
26+
version: 20.5.5
27+
dependencies:
28+
- condition: mariadb.enabled
29+
name: mariadb
30+
repository: https://charts.bitnami.com/bitnami
31+
version: 20.5.5

charts/mariadb/values.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
mariadb:
2+
## See https://github.com/bitnami/charts/blob/main/bitnami/mariadb/values.yaml
3+
enabled: true
4+
primary:
5+
persistence:
6+
enabled: false
7+
8+
metrics:
9+
enabled: true
10+
serviceMonitor:
11+
enabled: true
12+
labels:
13+
release: kube-prometheus-stack
14+

0 commit comments

Comments
 (0)