Merge R3 into master
[it/dep.git] / ric-aux / helm / aaf / charts / aaf-gui / values.yaml
1
2 # Copyright © 2017 Amdocs, Bell Canada
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 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.2
23   ubuntuInitRepository: registry.hub.docker.com
24   ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
25   persistence:
26     enabled: true
27   # Standard OOM
28   pullPolicy: "Always"
29   repository: "nexus3.onap.org:10001"
30
31   # Use Local
32   #pullPolicy: IfNotPresent
33   #repository: "nexus3.onap.org:10003"
34
35   aaf:
36     readiness: false
37     image: onap/aaf/aaf_core:2.1.15
38     aaf_env: "DEV"
39     public_fqdn: "aaf.osaaf.org"
40     aaf_release: "El Alto"
41   # DUBLIN ONLY - for M4 compatibility with Casablanca
42   #  aaf_locator_name: "public.%NS.%N"
43   #  aaf_locator_name_oom: "%NS.%N"
44   # EL ALTO and Beyond
45     aaf_locator_name: "%NS.%N"
46     aaf_locator_name_oom: "%CNS.%NS.%N"
47     cadi_latitude: "38.0"
48     cadi_longitude: "-72.0"
49     cadi_x509_issuers: "CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US:CN=intermediateCA_7, OU=OSAAF, O=ONAP, C=US"
50
51     config:
52       image: onap/aaf/aaf_config:2.1.15
53     cass:
54       replicas: 1
55       image: onap/aaf/aaf_cass:2.1.15
56       fqdn: "aaf-cass"
57       cluster_name: "osaaf"
58       heap_new_size: "512M"
59       max_heap_size: "1024M"
60       storage_port: 7000
61       ssl_storage_port: 7001
62       native_trans_port: 9042
63       rpc_port: 9160
64       dc: "dc1"
65     service:
66       replicas: 1
67       fqdn: "aaf-service"
68       internal_port: 8100
69       public_port: 31110
70     locate:
71       replicas: 1
72       fqdn: "aaf-locate"
73       internal_port: 8095
74       public_port: 31111
75     oauth:
76       replicas: 1
77       fqdn: "aaf0oauth"
78       internal_port: 8140
79       public_port: 31112
80     gui:
81       replicas: 1
82       fqdn: "aaf-gui"
83       internal_port: 8200
84       public_port: 31113
85     cm:
86       replicas: 1
87       fqdn: "aaf-cm"
88       internal_port: 8150
89       public_port: 31114
90     fs:
91       replicas: 1
92       fqdn: "aaf-fs"
93       internal_port: 8096
94       public_port: 31115
95     hello:
96       replicas: 0
97
98 flavor: small
99 #################################################################
100 # Application configuration defaults.
101 #################################################################
102 # application image
103 pullPolicy: Always
104
105
106 nodeSelector: {}
107
108 affinity: {}
109
110 # probe configuration parameters
111 liveness:
112   initialDelaySeconds: 120
113   periodSeconds: 10
114   # necessary to disable liveness probe when setting breakpoints
115   # in debugger so K8s doesn't restart unresponsive container
116   enabled: true
117
118 readiness:
119   initialDelaySeconds: 5
120   periodSeconds: 10
121
122 service:
123   name: aaf-gui
124   type: NodePort
125   portName: aaf-gui
126   #targetPort
127   internalPort: 8200
128   #port
129   externalPort: 8200
130   nodePort: 51
131
132 ingress:
133   enabled: false
134
135 # Configure resource requests and limits
136 resources: {}
137 # Allow END users to do this, if they want.  Detrimental to Test services
138 #resources:
139 #  small:
140 #    limits:
141 #      cpu: 100m
142 #      memory: 500Mi
143 #    requests:
144 #      cpu: 10m
145 #      memory: 200Mi
146 #  large:
147 #    limits:
148 #      cpu: 200m
149 #      memory: 1Gi
150 #    requests:
151 #      cpu: 100m
152 #      memory: 500Mi
153 #  unlimited: {}