[DCAEGEN2] Remove Lost+Found in PVC
[oom.git] / kubernetes / aaf / charts / aaf-hello / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications © 2020 AT&T
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 flavor: small
17
18 #################################################################
19 # Application configuration defaults.
20 #################################################################
21 # application image
22 aaf_init:
23   # You might want this in your own app.  For AAF, we store in global
24   # replicas: 1
25   image: onap/aaf/aaf_agent:2.1.20
26   fqi: "aaf@aaf.osaaf.org"
27 # This MUST match what is put in AAF's "Artifact" for Certificates
28   fqdn: "aaf-hello"
29 # What is put in Locator for External Access
30   locator_public_fqdn: "aaf.osaaf.org"
31   app_ns: "org.osaaf.aaf"
32   deploy_fqi: "deployer@people.osaaf.org"
33   cadi_latitude: "38.0"
34   cadi_longitude: "-72.0"
35
36 service:
37   image: onap/aaf/aaf_hello:2.1.20
38   port: "8130"
39   public_port: "31119"
40
41 persistence:
42   enabled: false
43     #existingClaim:
44     # You will want "Reatan" in non-Hello Example.
45   volumeReclaimPolicy: Delete
46   accessMode: ReadWriteMany
47   size: 40M
48   mountPath: /dockerdata-nfs
49   mountSubPath: aaf/hello
50
51 nodeSelector: {}
52
53 affinity: {}
54
55 # probe configuration parameters
56 liveness:
57   initialDelaySeconds: 120
58   periodSeconds: 10
59   # necessary to disable liveness probe when setting breakpoints
60   # in debugger so K8s doesn't restart unresponsive container
61   enabled: true
62
63 readiness:
64   initialDelaySeconds: 5
65   periodSeconds: 10
66
67 ingress:
68   enabled: false
69   service:
70     - baseaddr: "aafhello"
71       name: "aaf-hello"
72       port: 8130
73   config:
74     ssl: "none"
75
76 # Configure resource requests and limits
77 resources:
78  small:
79    limits:
80      cpu: 200m
81      memory: 500Mi
82    requests:
83      cpu: 10m
84      memory: 200Mi
85  large:
86    limits:
87      cpu: 400m
88      memory: 1Gi
89    requests:
90      cpu: 20m
91      memory: 500Mi
92  unlimited: {}