Extend K8S and RIC installation instructions
[it/dep.git] / ric-aux / 80-Auxiliary-Functions / helm / 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   ubuntuInitRepository: registry.hub.docker.com
23   ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
24   persistence:
25     enabled: true
26   # Standard OOM
27   pullPolicy: "Always"
28   repository: "nexus3.onap.org:10001"
29
30   # Use Local
31   #pullPolicy: IfNotPresent
32   #repository: "nexus3.onap.org:10003"
33
34   aaf:
35     readiness: false
36     image: onap/aaf/aaf_core:2.1.15
37     aaf_env: "DEV"
38     public_fqdn: "aaf.osaaf.org"
39     aaf_release: "El Alto"
40   # DUBLIN ONLY - for M4 compatibility with Casablanca
41   #  aaf_locator_name: "public.%NS.%N"
42   #  aaf_locator_name_oom: "%NS.%N"
43   # EL ALTO and Beyond
44     aaf_locator_name: "%NS.%N"
45     aaf_locator_name_oom: "%CNS.%NS.%N"
46     cadi_latitude: "38.0"
47     cadi_longitude: "-72.0"
48     cadi_x509_issuers: "CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US:CN=intermediateCA_7, OU=OSAAF, O=ONAP, C=US"
49
50     config:
51       image: onap/aaf/aaf_config:2.1.15
52     cass:
53       replicas: 1
54       image: onap/aaf/aaf_cass:2.1.15
55       fqdn: "aaf-cass"
56       cluster_name: "osaaf"
57       heap_new_size: "512M"
58       max_heap_size: "1024M"
59       storage_port: 7000
60       ssl_storage_port: 7001
61       native_trans_port: 9042
62       rpc_port: 9160
63       dc: "dc1"
64     service:
65       replicas: 1
66       fqdn: "aaf-service"
67       internal_port: 8100
68       public_port: 31110
69     locate:
70       replicas: 1
71       fqdn: "aaf-locate"
72       internal_port: 8095
73       public_port: 31111
74     oauth:
75       replicas: 1
76       fqdn: "aaf0oauth"
77       internal_port: 8140
78       public_port: 31112
79     gui:
80       replicas: 1
81       fqdn: "aaf-gui"
82       internal_port: 8200
83       public_port: 31113
84     cm:
85       replicas: 1
86       fqdn: "aaf-cm"
87       internal_port: 8150
88       public_port: 31114
89     fs:
90       replicas: 1
91       fqdn: "aaf-fs"
92       internal_port: 8096
93       public_port: 31115
94     hello:
95       replicas: 0
96
97 flavor: small
98 #################################################################
99 # Application configuration defaults.
100 #################################################################
101 # application image
102 aaf_init:
103   # You might want this in your own app.  For AAF, we store in global
104   # replicas: 1
105   fqdn: "aaf-hello"
106   image: onap/aaf/aaf_agent:2.1.15
107   app_ns: "org.osaaf.aaf"
108   fqi: "aaf@aaf.osaaf.org"
109   fqdn: "aaf-hello"
110   public_fqdn: "aaf.osaaf.org"
111   deploy_fqi: "deployer@people.osaaf.org"
112   cadi_latitude: "38.0"
113   cadi_longitude: "-72.0"
114
115 service:
116   image: onap/aaf/aaf_hello:2.1.15
117   port: "8130"
118   public_port: "31119"
119
120 persistence:
121   enabled: true
122   config:
123     #existingClaim:
124     # You will want "Reatan" in non-Hello Example.
125     volumeReclaimPolicy: Delete
126     accessMode: ReadWriteMany
127     size: 40M
128     storageClass: "manual"
129     mountPath: "/mnt/data/aaf/hello"
130
131 nodeSelector: {}
132
133 affinity: {}
134
135 # probe configuration parameters
136 liveness:
137   initialDelaySeconds: 120
138   periodSeconds: 10
139   # necessary to disable liveness probe when setting breakpoints
140   # in debugger so K8s doesn't restart unresponsive container
141   enabled: true
142
143 readiness:
144   initialDelaySeconds: 5
145   periodSeconds: 10
146
147 ingress:
148   enabled: false
149
150 # Configure resource requests and limits
151 resources: {}
152 # Allow END users to do this, if they want.  Detrimental to Test services
153 #resources:
154 #  small:
155 #    limits:
156 #      cpu: 200m
157 #      memory: 500Mi
158 #    requests:
159 #      cpu: 10m
160 #      memory: 200Mi
161 #  large:
162 #    limits:
163 #      cpu: 400m
164 #      memory: 1Gi
165 #    requests:
166 #      cpu: 20m
167 #      memory: 500Mi
168 #  unlimited: {}