Merge "[CLI] Set Release version of Guilin"
[oom.git] / kubernetes / sdc / components / sdc-cs / values.yaml
1 # Copyright © 2017 Amdocs, AT&T, Bell Canada
2 # Modifications Copyright © 2018  ZTE
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   readinessImage: onap/oom/readiness:3.0.1
22   loggingRepository: docker.elastic.co
23   loggingImage: beats/filebeat:5.5.0
24   cassandra:
25     #This flag allows SDC to instantiate its own cluster, serviceName
26     #should be sdc-cs if this flag is enabled
27     localCluster: false
28     #The cassandra service name to connect to (default: shared cassandra service)
29     serviceName: cassandra
30     #Shared cassandra cluster replicaCount, should be changed if localCluster is enabled
31     #to match with its own cluster replica
32     replicaCount: 3
33     clusterName: cassandra
34     dataCenter: Pod
35
36 #################################################################
37 # Application configuration defaults.
38 #################################################################
39 # application image
40 repository: nexus3.onap.org:10001
41 image: onap/sdc-cassandra:1.7.2
42 cassandraInitImage: onap/sdc-cassandra-init:1.7.2
43
44 pullPolicy: Always
45
46 config:
47   release: latest
48   maxHeapSize: "1536M"
49   heapNewSize: "512M"
50
51 #environment file
52 env:
53   name: AUTO
54
55 # default number of instances
56 replicaCount: 1
57
58 nodeSelector: {}
59
60 affinity: {}
61
62 # probe configuration parameters
63 liveness:
64   initialDelaySeconds: 60
65   periodSeconds: 10
66   # necessary to disable liveness probe when setting breakpoints
67   # in debugger so K8s doesn't restart unresponsive container
68   enabled: true
69
70 readiness:
71   initialDelaySeconds: 120
72   periodSeconds: 10
73
74 service:
75   type: ClusterIP
76   name: sdc-cs
77   portName: sdc-cs
78   externalPort: 9042
79   internalPort: 9042
80
81
82 ## Persist data to a persitent volume
83 persistence:
84   enabled: true
85
86   ## A manually managed Persistent Volume and Claim
87   ## Requires persistence.enabled: true
88   ## If defined, PVC must be created manually before volume will be bound
89   # existingClaim:
90   volumeReclaimPolicy: Retain
91
92   ## database data Persistent Volume Storage Class
93   ## If defined, storageClassName: <storageClass>
94   ## If set to "-", storageClassName: "", which disables dynamic provisioning
95   ## If undefined (the default) or set to null, no storageClassName spec is
96   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
97   ##   GKE, AWS & OpenStack)
98   ##
99   # storageClass: "-"
100   accessMode: ReadWriteOnce
101   size: 2Gi
102   mountPath: /dockerdata-nfs
103   mountSubPath: /sdc/sdc-cs/CS
104
105 ingress:
106   enabled: false