AAF 2.1.15 with AutoGen Certs and Config
[oom.git] / kubernetes / aaf / charts / aaf-hello / 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.2
22 flavor: small
23 #################################################################
24 # Application configuration defaults.
25 #################################################################
26 # application image
27 service:
28   # You might want this in your own app.  For AAF, we store in global
29   # replicas: 1
30   fqdn: "aaf-hello"
31   agentImage: onap/aaf/aaf_agent:2.1.15-SNAPSHOT
32   image: onap/aaf/aaf_hello:2.1.15-SNAPSHOT
33   app_ns: "org.osaaf.aaf"
34   fqi: "aaf@aaf.osaaf.org"
35   fqdn: "aaf-hello"
36   public_fqdn: "aaf.osaaf.org"
37   port: "8130"
38   public_port: "31116"
39   deploy_fqi: "deployer@people.osaaf.org"
40   cadi_latitude: "38.0"
41   cadi_longitude: "-72.0"
42
43 persistence:
44   enabled: true
45   config:
46     #existingClaim:
47     # You will want "Reatan" in non-Hello Example.
48     volumeReclaimPolicy: Delete
49     accessMode: ReadWriteMany
50     size: 40M
51     storageClass: "manual"
52     mountPath: "/mnt/data/aaf/hello"
53
54 nodeSelector: {}
55
56 affinity: {}
57
58 # probe configuration parameters
59 liveness:
60   initialDelaySeconds: 120
61   periodSeconds: 10
62   # necessary to disable liveness probe when setting breakpoints
63   # in debugger so K8s doesn't restart unresponsive container
64   enabled: true
65
66 readiness:
67   initialDelaySeconds: 5
68   periodSeconds: 10
69
70 ingress:
71   enabled: false
72
73 # Configure resource requests and limits
74 resources: {}
75 # Allow END users to do this, if they want.  Detrimental to Test services
76 #resources:
77 #  small:
78 #    limits:
79 #      cpu: 200m
80 #      memory: 500Mi
81 #    requests:
82 #      cpu: 10m
83 #      memory: 200Mi
84 #  large:
85 #    limits:
86 #      cpu: 400m
87 #      memory: 1Gi
88 #    requests:
89 #      cpu: 20m
90 #      memory: 500Mi
91 #  unlimited: {}