blob: 5e2b77c12a81ab1b648dd10029e977fea7d52269 [file] [log] [blame]
Mandeep Khindaa1047f42018-03-22 02:12:15 +00001#################################################################
2# Global configuration defaults.
3#################################################################
4global:
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
16repository: nexus3.onap.org:10001
17image: onap/sdc-cassandra:1.2-STAGING-latest
18cassandraInitImage: onap/sdc-cassandra-init:1.2-STAGING-latest
19
20pullPolicy: Always
21
22# flag to enable debugging - application support required
23debugEnabled: false
24
25secrets:
26 sdc_user: YXNkY191c2Vy
27 sdc_password: QWExMjM0JV4h
28 cs_password: b25hcDEyMyNAIQ==
29
30# default number of instances
31replicaCount: 1
32
33nodeSelector: {}
34
35affinity: {}
36
37# probe configuration parameters
38liveness:
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
45readiness:
46 initialDelaySeconds: 10
47 periodSeconds: 10
48
49service:
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
59persistence:
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
81ingress:
82 enabled: false
83
84resources: {}
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