Add image_username and image_password to charms
[osm/devops.git] / installers / charm / ui-k8s / reactive / spec_template.yaml
1 # Copyright 2020 Canonical Ltd.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #     Unless required by applicable law or agreed to in writing, software
10 #     distributed under the License is distributed on an "AS IS" BASIS,
11 #     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #     See the License for the specific language governing permissions and
13 #     limitations under the License.
14 version: 2
15 containers:
16   - name: %(name)s
17     imageDetails:
18       imagePath: %(image)s
19       username: %(image_username)s
20       password: %(image_password)s
21     ports:
22     - containerPort: %(advertised-port)s
23       protocol: TCP
24     config:
25       ALLOW_ANONYMOUS_LOGIN: 'yes'
26       OSM_SERVER: %(nbi_host)s
27       OSMUI_SQL_DATABASE_URI: mysql://root:%(mysql_root_password)s@%(mysql_host)s:%(mysql_port)s/%(mysql_database)s
28     kubernetes:
29       readinessProbe:
30         tcpSocket:
31           port: %(advertised-port)s
32         periodSeconds: 10
33         timeoutSeconds: 5
34         successThreshold: 1
35         failureThreshold: 3
36       livenessProbe:
37         tcpSocket:
38           port: %(advertised-port)s
39         initialDelaySeconds: 30
40         periodSeconds: 10
41         timeoutSeconds: 5
42         successThreshold: 1
43         failureThreshold: 3