Merge "Add FCAPS to oom"
[oom.git] / kubernetes / aaf / 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   pullPolicy: Always
27   repository: "nexus3.onap.org:10001"
28   # pullPolicy: IfNotPresent
29   # repository: "nexus3.onap.org:10003"
30
31   aaf:
32     imageVersion: 2.1.13
33     #imageVersion: latest
34     readiness: false
35     aaf_env: "DEV"
36     public_fqdn: "aaf.osaaf.org"
37     aaf_release: "Dublin"
38   # DUBLIN ONLY - for M4 compatibility with Casablanca
39     aaf_locator_name: "public.%NS.%N"
40     aaf_locator_name_oom: "%NS.%N"
41   # EL ALTO and Beyond
42   #  aaf_locator_name: "%NS.%N"
43   #  aaf_locator_name_oom: "%CNS.%NS.%N"
44     cadi_latitude: "38.0"
45     cadi_longitude: "-72.0"
46     cadi_x509_issuers: "CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US:CN=intermediateCA_7, OU=OSAAF, O=ONAP, C=US"
47
48     cass:
49       replicas: 1
50       fqdn: "aaf-cass"
51       cluster_name: "osaaf"
52       heap_new_size: "512M"
53       max_heap_size: "1024M"
54       storage_port: 7000
55       ssl_storage_port: 7001
56       native_trans_port: 9042
57       rpc_port: 9160
58       dc: "dc1"
59     service:
60       replicas: 1
61       fqdn: "aaf-service"
62       internal_port: 8100
63       public_port: 31110
64     locate:
65       replicas: 1
66       fqdn: "aaf-locate"
67       internal_port: 8095
68       public_port: 31111
69     oauth:
70       replicas: 1
71       fqdn: "aaf0oauth"
72       internal_port: 8140
73       public_port: 31112
74     gui:
75       replicas: 1
76       fqdn: "aaf-gui"
77       internal_port: 8200
78       public_port: 31113
79     cm:
80       replicas: 1
81       fqdn: "aaf-cm"
82       internal_port: 8150
83       public_port: 31114
84     fs:
85       replicas: 1
86       fqdn: "aaf-fs"
87       internal_port: 8096
88       public_port: 31115
89     hello:
90       replicas: 0
91       fqdn: "aaf-hello"
92       internal_port: 8130
93       public_port: 31116
94
95 #################################################################
96 # Application configuration defaults.
97 #################################################################
98
99 flavor: small
100 # default number of instances
101 replicaCount: 1
102
103 nodeSelector: {}
104
105 affinity: {}
106
107 # probe configuration parameters
108 liveness:
109   initialDelaySeconds: 350
110   periodSeconds: 10
111   # necessary to disable liveness probe when setting breakpoints
112   # in debugger so K8s doesn't restart unresponsive container
113   enabled: true
114
115 readiness:
116   initialDelaySeconds: 150
117   periodSeconds: 10
118
119 ingress:
120   enabled: false
121
122 ## Persist data to a persitent volume
123 persistence:
124   enabled: true
125   config:
126     #existingClaim:
127     volumeReclaimPolicy: Delete
128     accessMode: ReadWriteMany
129     size: 2Gi
130     storageClass: "manual"
131     mountPath: "/mnt/data/aaf/config"
132   logs:
133     #existingClaim:
134     volumeReclaimPolicy: Retain
135     accessMode: ReadWriteMany
136     size: 2Gi
137     storageClass: "manual"
138     mountPath: "/mnt/data/aaf/logs"
139   status:
140     volumeReclaimPolicy: Delete
141     accessMode: ReadWriteMany
142     size: 2M
143     storageClass: "manual"
144     mountPath: /dockerdata-nfs
145     mountSubPath: "status"
146   cass:
147     #existingClaim:
148     volumeReclaimPolicy: Retain
149     accessMode: ReadWriteOnce
150     size: 10Gi
151     storageClass: "manual"
152     mountPath: /dockerdata-nfs
153     mountSubPath: "cass"
154
155 resources: {}