blob: 0a1faccb3b8c8500aa40f9c9db8c659f3b5d0e66 [file] [log] [blame]
# Copyright 2021 Canonical Ltd.
#
# 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.
#
# For those usages not covered by the Apache License, Version 2.0 please
# contact: legal@canonical.com
#
# To get in touch with the maintainers, please contact:
# osm-charmers@lists.launchpad.net
##
version: 2
containers:
- name: %(name)s
image: %(docker_image)s
ports:
- containerPort: %(mysql_port)s
protocol: TCP
name: main
config:
MARIADB_ROOT_PASSWORD: %(root_password)s
MARIADB_USER: %(user)s
MARIADB_PASSWORD: %(password)s
MARIADB_DATABASE: %(database)s
kubernetes:
readinessProbe:
tcpSocket:
port: %(mysql_port)s
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 3
livenessProbe:
tcpSocket:
port: %(mysql_port)s
initialDelaySeconds: 120
periodSeconds: 10
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 3