mirror of
https://github.com/wahyd4/charts.git
synced 2026-08-22 03:25:53 +10:00
[bitnami/mariadb-galera] adds clusterDomain chart parameter
Fixes #1459
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: mariadb-galera
|
||||
version: 0.3.0
|
||||
version: 0.3.1
|
||||
appVersion: 10.3.18
|
||||
description: MariaDB Galera is a multi-master database cluster solution for synchronous replication and high availability.
|
||||
keywords:
|
||||
|
||||
@@ -58,11 +58,11 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
|
||||
The following table lists the configurable parameters of the MariaDB Galera chart and their default values.
|
||||
|
||||
| Parameter | Description | Default |
|
||||
| Parameter | Description | Default |
|
||||
|--------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
|
||||
| `global.imageRegistry` | Global Docker image registry | `nil` |
|
||||
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` (does not add image pull secrets to deployed pods) |
|
||||
| `global.storageClass` | Global storage class for dynamic provisioning | `nil` |
|
||||
| `global.storageClass` | Global storage class for dynamic provisioning | `nil` |
|
||||
| `image.registry` | MariaDB Galera image registry | `docker.io` |
|
||||
| `image.repository` | MariaDB Galera Image name | `bitnami/mariadb-galera` |
|
||||
| `image.tag` | MariaDB Galera Image tag | `{TAG_NAME}` |
|
||||
@@ -79,6 +79,7 @@ The following table lists the configurable parameters of the MariaDB Galera char
|
||||
| `service.loadBalancerIP` | `loadBalancerIP` if service type is `LoadBalancer` | `nil` |
|
||||
| `service.loadBalancerSourceRanges` | Address that are allowed when svc is `LoadBalancer` | `[]` |
|
||||
| `service.annotations` | Additional annotations for MariaDB Galera service | `{}` |
|
||||
| `clusterDomain` | Kubernetes DNS Domain name to use | `cluster.local` |
|
||||
| `serviceAccount.create` | Specify whether a ServiceAccount should be created | `false` |
|
||||
| `serviceAccount.name` | The name of the ServiceAccount to create | Generated using the mariadb-galera.fullname template |
|
||||
| `rbac.create` | Specify whether RBAC resources should be created and used | `false` |
|
||||
|
||||
@@ -9,7 +9,7 @@ Tip:
|
||||
|
||||
MariaDB can be accessed via port "{{ .Values.service.port }}" on the following DNS name from within your cluster:
|
||||
|
||||
{{ template "mariadb-galera.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local
|
||||
{{ template "mariadb-galera.fullname" . }}.{{ .Release.Namespace }}.svc.{{ .Values.clusterDomain }}
|
||||
|
||||
To obtain the password for the MariaDB "root" user run the following command:
|
||||
|
||||
|
||||
@@ -90,7 +90,7 @@ spec:
|
||||
- name: MARIADB_GALERA_CLUSTER_NAME
|
||||
value: {{ .Values.galera.name | quote }}
|
||||
- name: MARIADB_GALERA_CLUSTER_ADDRESS
|
||||
value: "gcomm://{{ template "mariadb-galera.fullname" . }}-headless.{{ .Release.Namespace }}.svc.cluster.local"
|
||||
value: "gcomm://{{ template "mariadb-galera.fullname" . }}-headless.{{ .Release.Namespace }}.svc.{{ .Values.clusterDomain }}"
|
||||
- name: MARIADB_ROOT_PASSWORD
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
|
||||
@@ -76,6 +76,10 @@ service:
|
||||
##
|
||||
annotations: {}
|
||||
|
||||
## Specifies the Kubernetes Cluster's Domain Name.
|
||||
##
|
||||
clusterDomain: cluster.local
|
||||
|
||||
## Pods Service Account
|
||||
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
|
||||
##
|
||||
|
||||
@@ -76,6 +76,10 @@ service:
|
||||
##
|
||||
annotations: {}
|
||||
|
||||
## Specifies the Kubernetes Cluster's Domain Name.
|
||||
##
|
||||
clusterDomain: cluster.local
|
||||
|
||||
## Pods Service Account
|
||||
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user