blob: 474c5973ec4a944edf887b3cb8a5cbd257c8786a [file] [log] [blame]
Aaron Hay343e6002018-08-21 13:55:00 -04001# Copyright © 2018 Amdocs, Bell Canada, AT&T
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
Aaron Hay343e6002018-08-21 13:55:00 -040021 loggingRepository: docker.elastic.co
22 loggingImage: beats/filebeat:5.5.0
23
24#################################################################
25# Application configuration defaults.
26#################################################################
GregSulek973bfad2018-09-19 06:48:37 -040027flavor: small
28
Aaron Hay343e6002018-08-21 13:55:00 -040029# application image
30repository: nexus3.onap.org:10001
Taka Choa7acb7f2019-09-25 17:25:39 -040031image: onap/ccsdk-ansible-server-image:0.4.4
Aaron Hay343e6002018-08-21 13:55:00 -040032pullPolicy: Always
33
34# flag to enable debugging - application support required
35debugEnabled: false
36
37# application configuration
38config:
Taka Cho72759852019-06-26 13:51:46 -040039 ansibleUid: 100
40 ansibleGid: 101
Aaron Hay343e6002018-08-21 13:55:00 -040041 appcChartName: appc
42 mysqlServiceName: appc-dbhost
Aaron Hay0fc90762019-03-20 19:48:42 -040043 configDir: /opt/onap/ccsdk
Aaron Hay343e6002018-08-21 13:55:00 -040044
45# default number of instances
46replicaCount: 1
47
48nodeSelector: {}
49
50affinity: {}
51
52# probe configuration parameters
53liveness:
54 initialDelaySeconds: 180
55 periodSeconds: 10
56 # necessary to disable liveness probe when setting breakpoints
57 # in debugger so K8s doesn't restart unresponsive container
58 enabled: true
59
60readiness:
61 initialDelaySeconds: 60
62 periodSeconds: 10
63
64service:
65 type: ClusterIP
66 name: appc-ansible-server
67 portName: appc-ansible-server
68 internalPort: 8000
69 externalPort: 8000
Aaron Hay0fc90762019-03-20 19:48:42 -040070 nfsprovisionerPrefix: appc
71 disableNfsProvisioner: true
72
73## Persist data to a persitent volume
74persistence:
75 enabled: true
76
77 ## A manually managed Persistent Volume and Claim
78 ## Requires persistence.enabled: true
79 ## If defined, PVC must be created manually before volume will be bound
80 # existingClaim:
81 volumeReclaimPolicy: Retain
82
83 ## database data Persistent Volume Storage Class
84 ## If defined, storageClassName: <storageClass>
85 ## If set to "-", storageClassName: "", which disables dynamic provisioning
86 ## If undefined (the default) or set to null, no storageClassName spec is
87 ## set, choosing the default provisioner. (gp2 on AWS, standard on
88 ## GKE, AWS & OpenStack)
Sylvain Desbureaux386d9e92019-11-05 11:41:53 +010089 accessMode: ReadWriteOnce
Aaron Hay0fc90762019-03-20 19:48:42 -040090 size: 1Gi
91 mountPath: /dockerdata-nfs
92 mountSubPath: appc/ansible
Taka Cho72759852019-06-26 13:51:46 -040093 playbookPath: /home/ansible
Aaron Hay343e6002018-08-21 13:55:00 -040094
95ingress:
96 enabled: false
97
GregSulek973bfad2018-09-19 06:48:37 -040098resources:
99 small:
100 limits:
101 cpu: 1
102 memory: 1Gi
103 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +0000104 cpu: 0.5
105 memory: 0.5Mi
GregSulek973bfad2018-09-19 06:48:37 -0400106 large:
107 limits:
108 cpu: 2
109 memory: 2Gi
110 requests:
Mandeep Khinda3c134252018-09-19 23:56:37 +0000111 cpu: 1
112 memory: 1Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000113 unlimited: {}