Merge "Migrate to HTTPS from HTTP - VNFSDK"
[oom.git] / kubernetes / vfc / charts / vfc-catalog / 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   readinessRepository: oomk8s
21   readinessImage: readiness-check:2.0.0
22   loggingRepository: docker.elastic.co
23   loggingImage: beats/filebeat:5.5.0
24
25 #################################################################
26 # Secrets metaconfig
27 #################################################################
28 secrets:
29   - uid: "db-root-pass"
30     externalSecret: '{{ tpl (default "" .Values.config.mariadbRootPasswordExternalSecret) . }}'
31     type: password
32     password: '{{ .Values.config.mariadbRootPassword }}'
33     policy: required
34
35 #################################################################
36 # Application configuration defaults.
37 #################################################################
38 # application image
39 flavor: small
40
41 repository: nexus3.onap.org:10001
42 image: onap/vfc/catalog:1.3.4
43 pullPolicy: Always
44
45 #Istio sidecar injection policy
46 istioSidecar: true
47
48 # flag to enable debugging - application support required
49 debugEnabled: false
50
51 # application configuration
52 config:
53   mariadbService: vfc-mariadb
54   mariadbPort: 3306
55   # mariadbRootPassword: secretpassword
56   # mariadbRootPasswordExternalSecret: some secret
57
58 # default number of instances
59 replicaCount: 1
60
61 nodeSelector: {}
62
63 affinity: {}
64
65 # probe configuration parameters
66 liveness:
67   initialDelaySeconds: 120
68   periodSeconds: 10
69   # necessary to disable liveness probe when setting breakpoints
70   # in debugger so K8s doesn't restart unresponsive container
71   enabled: true
72
73 readiness:
74   initialDelaySeconds: 10
75   periodSeconds: 10
76
77 ## Persist data to a persitent volume
78 persistence:
79   enabled: true
80   ## A manually managed Persistent Volume and Claim
81   ## Requires persistence.enabled: true
82   ## If defined, PVC must be created manually before volume will be bound
83   # existingClaim:
84   volumeReclaimPolicy: Retain
85   ## database data Persistent Volume Storage Class
86   ## If defined, storageClassName: <storageClass>
87   ## If set to "-", storageClassName: "", which disables dynamic provisioning
88   ## If undefined (the default) or set to null, no storageClassName spec is
89   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
90   ##   GKE, AWS & OpenStack)
91   ##
92   # storageClass: "-"
93   accessMode: ReadWriteOnce
94   size: 2Gi
95   mountPath: /dockerdata-nfs
96   mountSubPath: vfc/catalog
97
98 service:
99   type: ClusterIP
100   name: vfc-catalog
101   portName: vfc-catalog
102   externalPort: 8806
103   internalPort: 8806
104 #  nodePort: 30806
105
106 ingress:
107   enabled: false
108
109 # Configure resource requests and limits
110 resources:
111   small:
112     limits:
113       cpu: 200m
114       memory: 500Mi
115     requests:
116       cpu: 100m
117       memory: 250Mi
118   large:
119     limits:
120       cpu: 400m
121       memory: 1000Mi
122     requests:
123       cpu: 200m
124       memory: 500Mi
125   unlimited: {}