hack/kubernetes/mysql.yml (109 lines of code) (raw):

# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You 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. # apiVersion: apps/v1 kind: Deployment metadata: labels: app: mysql-1 name: mysql-1 namespace: default spec: progressDeadlineSeconds: 600 replicas: 1 revisionHistoryLimit: 10 selector: matchLabels: app: mysql-1 strategy: type: Recreate template: metadata: labels: app: mysql-1 spec: containers: - env: - name: MYSQL_ROOT_PASSWORD value: root image: mysql:5.7 imagePullPolicy: IfNotPresent name: mysql ports: - containerPort: 3306 protocol: TCP resources: {} terminationMessagePath: /dev/termination-log terminationMessagePolicy: File dnsPolicy: ClusterFirst restartPolicy: Always schedulerName: default-scheduler securityContext: {} terminationGracePeriodSeconds: 30 --- apiVersion: v1 kind: Service metadata: name: mysql-1 namespace: default spec: ports: - port: 3306 protocol: TCP targetPort: 3306 selector: app: mysql-1 sessionAffinity: None type: ClusterIP --- apiVersion: apps/v1 kind: Deployment metadata: labels: app: mysql-2 name: mysql-2 namespace: default spec: progressDeadlineSeconds: 600 replicas: 1 revisionHistoryLimit: 10 selector: matchLabels: app: mysql-2 strategy: type: Recreate template: metadata: labels: app: mysql-2 spec: containers: - env: - name: MYSQL_ROOT_PASSWORD value: root image: mysql:5.7 imagePullPolicy: IfNotPresent name: mysql ports: - containerPort: 3306 protocol: TCP resources: {} terminationMessagePath: /dev/termination-log terminationMessagePolicy: File dnsPolicy: ClusterFirst restartPolicy: Always schedulerName: default-scheduler securityContext: {} terminationGracePeriodSeconds: 30 --- apiVersion: v1 kind: Service metadata: name: mysql-2 namespace: default spec: ports: - port: 3306 protocol: TCP targetPort: 3306 selector: app: mysql-2 sessionAffinity: None type: ClusterIP