blob: b32ed11045a4e904d227fd476e0049707276c67e [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 ubuntuInitRepository: oomk8s
12 ubuntuInitImage: ubuntu-init:1.0.0
13
14
15#################################################################
16# Application configuration defaults.
17#################################################################
18# application image
19repository: nexus3.onap.org:10001
20image: onap/sdc-elasticsearch:1.2-STAGING-latest
21elasticInitImage: onap/sdc-init-elasticsearch:1.2-STAGING-latest
22pullPolicy: Always
23
24# flag to enable debugging - application support required
25debugEnabled: false
26
27# application configuration
28config:
29 elasticHeapSize: 1024M
30
31# default number of instances
32replicaCount: 1
33
34nodeSelector: {}
35
36affinity: {}
37
38# probe configuration parameters
39liveness:
40 initialDelaySeconds: 10
41 periodSeconds: 10
42 # necessary to disable liveness probe when setting breakpoints
43 # in debugger so K8s doesn't restart unresponsive container
44 enabled: true
45
46readiness:
47 initialDelaySeconds: 10
48 periodSeconds: 10
49
50service:
51 type: ClusterIP
52 name: sdc-es
53 externalPort: 9200
54 internalPort: 9200
55 externalPort2: 9300
56 internalPort2: 9300
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-es/ES
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