standardizing SDC helm charts
[oom.git] / kubernetes / sdc / charts / sdc-cs / values.yaml
1 #################################################################
2 # Global configuration defaults.
3 #################################################################
4 global:
5   nodePortPrefix: 302
6   repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
7   readinessRepository: oomk8s
8   readinessImage: readiness-check:1.0.0
9   loggingRepository: docker.elastic.co
10   loggingImage: beats/filebeat:5.5.0
11
12 #################################################################
13 # Application configuration defaults.
14 #################################################################
15 # application image
16 repository: nexus3.onap.org:10001
17 image: openecomp/sdc-cassandra:v1.1.0
18
19 pullPolicy: Always
20
21 # flag to enable debugging - application support required
22 debugEnabled: false
23
24 # application configuration
25 # Example:
26 config:
27 #  username: myusername
28 #  password: mypassword
29
30 # default number of instances
31 replicaCount: 1
32
33 nodeSelector: {}
34
35 affinity: {}
36
37 # probe configuration parameters
38 liveness:
39   initialDelaySeconds: 10
40   periodSeconds: 10
41   # necessary to disable liveness probe when setting breakpoints
42   # in debugger so K8s doesn't restart unresponsive container
43   enabled: true
44
45 readiness:
46   initialDelaySeconds: 10
47   periodSeconds: 10
48
49 service:
50   type: ClusterIP
51   name: sdc-cs
52   externalPort: 9042
53   internalPort: 9042
54   externalPort: 9160
55   internalPort: 9160
56
57 ## Persist data to a persitent volume
58 persistence:
59   enabled: true
60
61   ## A manually managed Persistent Volume and Claim
62   ## Requires persistence.enabled: true
63   ## If defined, PVC must be created manually before volume will be bound
64   # existingClaim:
65   volumeReclaimPolicy: Retain
66
67   ## database data Persistent Volume Storage Class
68   ## If defined, storageClassName: <storageClass>
69   ## If set to "-", storageClassName: "", which disables dynamic provisioning
70   ## If undefined (the default) or set to null, no storageClassName spec is
71   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
72   ##   GKE, AWS & OpenStack)
73   ##
74   # storageClass: "-"
75   accessMode: ReadWriteMany
76   size: 2Gi
77   mountPath: /dockerdata-nfs
78   mountSubPath: /sdc/sdc-cs/CS
79
80 ingress:
81   enabled: false
82
83 resources: {}
84   # We usually recommend not to specify default resources and to leave this as a conscious
85   # choice for the user. This also increases chances charts run on environments with little
86   # resources, such as Minikube. If you do want to specify resources, uncomment the following
87   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
88   #
89   # Example:
90   # Configure resource requests and limits
91   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
92   # Minimum memory for development is 2 CPU cores and 4GB memory
93   # Minimum memory for production is 4 CPU cores and 8GB memory
94 #resources:
95 #  limits:
96 #    cpu: 2
97 #    memory: 4Gi
98 #  requests:
99 #    cpu: 2
100 #    memory: 4Gi