[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / appc / charts / appc-ansible-server / values.yaml
1 # 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 #################################################################
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
24 #################################################################
25 # Application configuration defaults.
26 #################################################################
27 flavor: small
28
29 # application image
30 repository: nexus3.onap.org:10001
31 image: onap/ccsdk-ansible-server-image:0.4.4
32 pullPolicy: Always
33
34 # flag to enable debugging - application support required
35 debugEnabled: false
36
37 # application configuration
38 config:
39   ansibleUid: 100
40   ansibleGid: 101
41   appcChartName: appc
42   mysqlServiceName: appc-dbhost
43   configDir: /opt/onap/ccsdk
44
45 # default number of instances
46 replicaCount: 1
47
48 nodeSelector: {}
49
50 affinity: {}
51
52 # probe configuration parameters
53 liveness:
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
60 readiness:
61   initialDelaySeconds: 60
62   periodSeconds: 10
63
64 service:
65   type: ClusterIP
66   name: appc-ansible-server
67   portName: appc-ansible-server
68   internalPort: 8000
69   externalPort: 8000
70   nfsprovisionerPrefix: appc
71   disableNfsProvisioner: true
72
73 ## Persist data to a persitent volume
74 persistence:
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)
89   accessMode: ReadWriteOnce
90   size: 1Gi
91   mountPath: /dockerdata-nfs
92   mountSubPath: appc/ansible
93   playbookPath: /home/ansible
94
95 ingress:
96   enabled: false
97
98 resources:
99   small:
100     limits:
101       cpu: 1
102       memory: 1Gi
103     requests:
104       cpu: 0.5
105       memory: 0.5Mi
106   large:
107     limits:
108       cpu: 2
109       memory: 2Gi
110     requests:
111       cpu: 1
112       memory: 1Gi
113   unlimited: {}