ac06f49849
This PS unifies and normalises Kubernetes resource allocation and update strategy across all OpenStack-Helm elements. Change-Id: Ia41fc453cb5191fa447ca6e1aa0f5b431c939dc8
118 lines
4.2 KiB
YAML
118 lines
4.2 KiB
YAML
# Copyright 2017 The Openstack-Helm Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
{{- $envAll := . }}
|
|
---
|
|
apiVersion: apps/v1beta1
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: mariadb
|
|
spec:
|
|
serviceName: "{{ tuple "oslo_db" "internal" . | include "helm-toolkit.endpoints.hostname_short_endpoint_lookup" }}-discovery"
|
|
replicas: {{ .Values.replicas }}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
{{ tuple $envAll "mariadb" "server" | include "helm-toolkit.snippets.kubernetes_metadata_labels" | indent 8 }}
|
|
spec:
|
|
affinity:
|
|
{{ tuple $envAll "mariadb" "server" | include "helm-toolkit.snippets.kubernetes_pod_anti_affinity" | indent 8 }}
|
|
nodeSelector:
|
|
{{ .Values.labels.node_selector_key }}: {{ .Values.labels.node_selector_value }}
|
|
containers:
|
|
- name: mariadb
|
|
image: {{ .Values.images.mariadb }}
|
|
imagePullPolicy: {{ .Values.images.pull_policy }}
|
|
{{ tuple $envAll $envAll.Values.resources.server | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
|
|
command:
|
|
- /tmp/start.sh
|
|
env:
|
|
- name: POD_IP
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: status.podIP
|
|
- name: POD_NAME
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: metadata.name
|
|
- name: WSREP_PORT
|
|
value: {{ tuple "oslo_db" "internal" "wsrep" . | include "helm-toolkit.endpoints.endpoint_port_lookup" | quote }}
|
|
- name: SERVICE_NAME
|
|
value: {{ tuple "oslo_db" "internal" . | include "helm-toolkit.endpoints.hostname_short_endpoint_lookup" }}
|
|
- name: DISCOVERY_SERVICE_NAME
|
|
value: {{ tuple "oslo_db" "discovery" . | include "helm-toolkit.endpoints.hostname_short_endpoint_lookup"}}
|
|
- name: MYSQL_ROOT_PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: mariadb-db-root-password
|
|
key: MYSQL_ROOT_PASSWORD
|
|
readinessProbe:
|
|
exec:
|
|
command:
|
|
- /tmp/readiness.sh
|
|
volumeMounts:
|
|
- name: mycnfd
|
|
mountPath: /etc/mysql/conf.d
|
|
- name: mariadb-bin
|
|
mountPath: /tmp/readiness.sh
|
|
subPath: readiness.sh
|
|
readOnly: true
|
|
- name: mariadb-bin
|
|
mountPath: /tmp/start.sh
|
|
subPath: start.sh
|
|
readOnly: true
|
|
- name: mariadb-etc
|
|
mountPath: /etc/mysql/my.cnf
|
|
readOnly: true
|
|
subPath: my.cnf
|
|
- name: mariadb-etc
|
|
mountPath: /etc/mysql/conf.d/00-base.cnf
|
|
subPath: 00-base.cnf
|
|
readOnly: true
|
|
- name: mariadb-etc
|
|
mountPath: /etc/mysql/conf.d/20-override.cnf
|
|
subPath: 20-override.cnf
|
|
readOnly: true
|
|
- name: mariadb-etc
|
|
mountPath: /etc/mysql/conf.d/99-force.cnf
|
|
subPath: 99-force.cnf
|
|
readOnly: true
|
|
- name: mysql-data
|
|
mountPath: /var/lib/mysql
|
|
volumes:
|
|
- name: mycnfd
|
|
emptyDir: {}
|
|
- name: mariadb-bin
|
|
configMap:
|
|
name: mariadb-bin
|
|
defaultMode: 0555
|
|
- name: mariadb-etc
|
|
configMap:
|
|
name: mariadb-etc
|
|
{{- if not .Values.volume.enabled }}
|
|
- name: mysql-data
|
|
emptyDir: {}
|
|
{{- end }}
|
|
{{- if .Values.volume.enabled }}
|
|
volumeClaimTemplates:
|
|
- metadata:
|
|
name: mysql-data
|
|
spec:
|
|
accessModes: [ "ReadWriteOnce" ]
|
|
resources:
|
|
requests:
|
|
storage: {{ .Values.volume.size }}
|
|
storageClassName: {{ .Values.volume.class_name }}
|
|
{{- end }}
|