Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/database/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: database
description: OSC database service Helm Chart
type: application
version: 0.12.0
version: 0.13.0
appVersion: "0.1.0"
maintainers:
- name: treydock
Expand Down
10 changes: 5 additions & 5 deletions charts/database/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# database

![Version: 0.12.0](https://img.shields.io/badge/Version-0.12.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square)
![Version: 0.13.0](https://img.shields.io/badge/Version-0.13.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square)

OSC database service Helm Chart

Expand Down Expand Up @@ -74,16 +74,16 @@ postgresql:
| global.ingressName | The name of IGNIX Ingress | `"ingress-nginx"` |
| imagePullSecret.enable | Manage the image pull secret from osc-common. Disable if this chart is used as a subchart. | `true` |
| mariadb.enable | Enable MariaDB subchart by setting to `true` | `false` |
| mariadb.image.repository | The OSC registry path to mariadb replicated image. This value should not need to be changed. | `"kubernetes/bitnami/mariadb"` |
| mariadb.image.tag | The version of MariaDB image. **This version of must replicated to OSC registry** | `"10.5.13-debian-10-r58"` |
| mariadb.image.repository | The OSC registry path to mariadb replicated image. This value should not need to be changed. | `"webservices/mariadb"` |
| mariadb.image.tag | The version of MariaDB image. **This version of must built by this repo** | `"10.5.13-debian-10-r58"` |
| mariadb.primary.resources | Set limits for primary MariaDB pod | `{"limits":{"cpu":4,"memory":"4Gi"},"requests":{"cpu":1,"memory":"256Mi"}}` |
| mariadb.volumePermissions.image.repository | The OSC registry path to replicated image. This value should not need to be changed. | `"kubernetes/bitnami/bitnami-shell"` |
| mariadb.volumePermissions.image.tag | The version of replicated image. **This version of must replicated to OSC registry** | `"11-debian-11-r61"` |
| mariadb.metrics.image.repository | The OSC registry path to replicated image. This value should not need to be changed. | `"kubernetes/bitnami/mysqld-exporter"` |
| mariadb.metrics.image.tag | The version of replicated image. **This version of must replicated to OSC registry** | `"0.14.0-debian-11-r67"` |
| postgresql.enable | Enable PostgreSQL subchart by setting to `true` | `false` |
| postgresql.image.repository | The OSC registry path to postgresql replicated image. This value should not need to be changed. | `"kubernetes/bitnami/postgresql"` |
| postgresql.image.tag | The version of MariaDB image. **This version of must replicated to OSC registry** | `"14.4.0-debian-11-r18"` |
| postgresql.image.repository | The OSC registry path to postgresql replicated image. This value should not need to be changed. | `"webservices/postgresql"` |
| postgresql.image.tag | The version of MariaDB image. **This version of must built by this repo** | `"14.4.0-debian-11-r18"` |
| postgresql.auth.postgresPassword | The postgres user admin password | **required** |
| postgresql.auth.database | The database name | **required** |
| postgresql.auth.username | The database username | **required** |
Expand Down
8 changes: 4 additions & 4 deletions charts/database/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ mariadb:
image:
# -- The OSC registry path to mariadb replicated image.
# This value should not need to be changed.
repository: kubernetes/bitnami/mariadb
repository: webservices/mariadb
# -- The version of MariaDB image.
# **This version of must replicated to OSC registry**
# **This version of must built by this repo**
tag: 10.5.13-debian-10-r58
# @ignored
auth:
Expand Down Expand Up @@ -137,9 +137,9 @@ postgresql:
image:
# -- The OSC registry path to postgresql replicated image.
# This value should not need to be changed.
repository: kubernetes/bitnami/postgresql
repository: webservices/postgresql
# -- The version of MariaDB image.
# **This version of must replicated to OSC registry**
# **This version of must built by this repo**
tag: 14.4.0-debian-11-r18
auth:
# -- The postgres user admin password
Expand Down