[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / sdnc / components / sdnc-ansible-server / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
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
15 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20   readinessImage: onap/oom/readiness:3.0.1
21   loggingRepository: docker.elastic.co
22   loggingImage: beats/filebeat:5.5.0
23   # envsusbt
24   envsubstImage: dibi/envsubst
25   mariadbGalera:
26     #This flag allows SO to instantiate its own mariadb-galera cluster
27     #If shared instance is used, this chart assumes that DB already exists
28     localCluster: false
29     service: mariadb-galera
30     internalPort: 3306
31     nameOverride: mariadb-galera
32
33 #################################################################
34 # Secrets metaconfig
35 #################################################################
36 secrets:
37   - uid: db-secret
38     name: &dbSecretName '{{ include "common.release" . }}-sdnc-ansible-server-db-secret'
39     type: basicAuth
40     # This is a nasty trick that allows you override this secret using external one
41     # with the same field that is used to pass this to subchart
42     externalSecret: '{{ ternary "" (tpl (default "" (index .Values "mariadb-galera" "config" "userCredentialsExternalSecret")) .) (hasSuffix "sdnc-ansible-server-db-secret" (index .Values "mariadb-galera" "config" "userCredentialsExternalSecret"))}}'
43     login: '{{ index .Values "mariadb-galera" "config" "userName" }}'
44     password: '{{ index .Values "mariadb-galera" "config" "userPassword" }}'
45     passwordPolicy: required
46   - uid: rest-creds
47     type: basicAuth
48     externalSecret: '{{ tpl (default "" .Values.config.restCredsExternalSecret) . }}'
49     login: '{{ .Values.config.restUser }}'
50     password: '{{ .Values.config.restPassword }}'
51     passwordPolicy: required
52
53 #################################################################
54 # Application configuration defaults.
55 #################################################################
56 # application image
57 repository: nexus3.onap.org:10001
58 image: onap/sdnc-ansible-server-image:2.0.3
59 pullPolicy: Always
60
61 # flag to enable debugging - application support required
62 debugEnabled: false
63
64 # application configuration
65 config:
66   sdncChartName: sdnc
67   configDir: /opt/onap/sdnc
68   restUser: sdnc
69   restPassword: sdnc
70   # restCredsExternalSecret: some secret
71
72 mariadb-galera:
73   config:
74     userCredentialsExternalSecret: *dbSecretName
75     userName: sdnc
76     userPassword: sdnc
77     mysqlDatabase: ansible
78   nameOverride: ansible-server-galera
79   service:
80     name: ansible-server-galera
81     portName: ansible-server-galera
82     internalPort: 3306
83   replicaCount: 1
84   persistence:
85     enabled: true
86     mountSubPath: ansible-server/maria/data
87
88 # default number of instances
89 replicaCount: 1
90
91 nodeSelector: {}
92
93 affinity: {}
94
95 # probe configuration parameters
96 liveness:
97   initialDelaySeconds: 180
98   periodSeconds: 10
99   # necessary to disable liveness probe when setting breakpoints
100   # in debugger so K8s doesn't restart unresponsive container
101   enabled: true
102
103 readiness:
104   initialDelaySeconds: 60
105   periodSeconds: 10
106
107 service:
108   type: ClusterIP
109   name: sdnc-ansible-server
110   portName: sdnc-ansible-server
111   internalPort: 8000
112   externalPort: 8000
113
114 ingress:
115   enabled: false
116
117 #Resource Limit flavor -By default using small
118 flavor: small
119
120 #Segregation for Different environment (Small and Large)
121
122 resources:
123   small:
124     limits:
125       cpu: 1
126       memory: 1Gi
127     requests:
128       cpu: 0.5
129       memory: 500Mi
130   large:
131     limits:
132       cpu: 2
133       memory: 2Gi
134     requests:
135       cpu: 1
136       memory: 1Gi
137   unlimited: {}