blob: 654867fcc8bd9f4ae290a809f066c8d9bb8b0466 [file] [log] [blame]
jmac7c434672018-05-11 20:14:17 +00001# 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#################################################################
18global:
19 nodePortPrefix: 302
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020020 readinessImage: onap/oom/readiness:3.0.1
jmac7c434672018-05-11 20:14:17 +000021 loggingRepository: docker.elastic.co
22 loggingImage: beats/filebeat:5.5.0
Krzysztof Opasiakb9d50c92020-02-20 21:29:45 +010023 # 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#################################################################
36secrets:
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
Krzysztof Opasiak88e44bf2020-02-26 02:23:23 +010048 externalSecret: '{{ tpl (default "" .Values.config.restCredsExternalSecret) . }}'
Krzysztof Opasiakb9d50c92020-02-20 21:29:45 +010049 login: '{{ .Values.config.restUser }}'
50 password: '{{ .Values.config.restPassword }}'
51 passwordPolicy: required
jmac7c434672018-05-11 20:14:17 +000052
53#################################################################
54# Application configuration defaults.
55#################################################################
56# application image
57repository: nexus3.onap.org:10001
Dan Timoneya98765b2020-09-14 11:57:55 -040058image: onap/sdnc-ansible-server-image:2.0.1
jmac7c434672018-05-11 20:14:17 +000059pullPolicy: Always
60
61# flag to enable debugging - application support required
62debugEnabled: false
63
64# application configuration
65config:
66 sdncChartName: sdnc
67 configDir: /opt/onap/sdnc
Krzysztof Opasiakb9d50c92020-02-20 21:29:45 +010068 restUser: sdnc
69 restPassword: sdnc
70 # restCredsExternalSecret: some secret
jmac7c434672018-05-11 20:14:17 +000071
Krzysztof Opasiakb9d50c92020-02-20 21:29:45 +010072mariadb-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
jmac7c434672018-05-11 20:14:17 +000087
88# default number of instances
89replicaCount: 1
90
91nodeSelector: {}
92
93affinity: {}
94
95# probe configuration parameters
96liveness:
BorislavG8d9337a2018-06-13 14:56:54 +000097 initialDelaySeconds: 180
jmac7c434672018-05-11 20:14:17 +000098 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
103readiness:
104 initialDelaySeconds: 60
105 periodSeconds: 10
106
107service:
108 type: ClusterIP
109 name: sdnc-ansible-server
110 portName: sdnc-ansible-server
111 internalPort: 8000
112 externalPort: 8000
113
114ingress:
115 enabled: false
116
toshrajbhardwaj72b5f0f2018-09-13 02:45:22 +0000117#Resource Limit flavor -By default using small
118flavor: small
119
120#Segregation for Different environment (Small and Large)
121
122resources:
Mandeep Khindade045712018-09-19 18:11:57 +0000123 small:
124 limits:
125 cpu: 1
126 memory: 1Gi
127 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +0000128 cpu: 0.5
129 memory: 500Mi
Mandeep Khindade045712018-09-19 18:11:57 +0000130 large:
131 limits:
132 cpu: 2
133 memory: 2Gi
134 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +0000135 cpu: 1
136 memory: 1Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000137 unlimited: {}