Merge "Updated Cloud Guide with links to wiki"
[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.1.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: onap/sdc-cassandra:1.2-STAGING-latest
18 cassandraInitImage: onap/sdc-cassandra-init:1.2-STAGING-latest
19
20 pullPolicy: Always
21
22 # flag to enable debugging - application support required
23 debugEnabled: false
24
25 secrets:
26     sdc_user: YXNkY191c2Vy
27     sdc_password: QWExMjM0JV4h
28     cs_password: b25hcDEyMyNAIQ==
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: 9160
53   internalPort: 9160
54   externalPort2: 9042
55   internalPort2: 9042
56
57
58 ## Persist data to a persitent volume
59 persistence:
60   enabled: true
61
62   ## A manually managed Persistent Volume and Claim
63   ## Requires persistence.enabled: true
64   ## If defined, PVC must be created manually before volume will be bound
65   # existingClaim:
66   volumeReclaimPolicy: Retain
67
68   ## database data Persistent Volume Storage Class
69   ## If defined, storageClassName: <storageClass>
70   ## If set to "-", storageClassName: "", which disables dynamic provisioning
71   ## If undefined (the default) or set to null, no storageClassName spec is
72   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
73   ##   GKE, AWS & OpenStack)
74   ##
75   # storageClass: "-"
76   accessMode: ReadWriteMany
77   size: 2Gi
78   mountPath: /dockerdata-nfs
79   mountSubPath: /sdc/sdc-cs/CS
80
81 ingress:
82   enabled: false
83
84 resources: {}
85   # We usually recommend not to specify default resources and to leave this as a conscious
86   # choice for the user. This also increases chances charts run on environments with little
87   # resources, such as Minikube. If you do want to specify resources, uncomment the following
88   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
89   #
90   # Example:
91   # Configure resource requests and limits
92   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
93   # Minimum memory for development is 2 CPU cores and 4GB memory
94   # Minimum memory for production is 4 CPU cores and 8GB memory
95 #resources:
96 #  limits:
97 #    cpu: 2
98 #    memory: 4Gi
99 #  requests:
100 #    cpu: 2
101 #    memory: 4Gi