Add Common Helm Chart "mariadb-galera"
[oom.git] / kubernetes / sdc / charts / sdc-es / 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   ubuntuInitRepository: oomk8s
12   ubuntuInitImage: ubuntu-init:1.0.0
13
14
15 #################################################################
16 # Application configuration defaults.
17 #################################################################
18 # application image
19 repository: nexus3.onap.org:10001
20 image: onap/sdc-elasticsearch:1.2-STAGING-latest
21 elasticInitImage: onap/sdc-init-elasticsearch:1.2-STAGING-latest
22 pullPolicy: Always
23
24 # flag to enable debugging - application support required
25 debugEnabled: false
26
27 # application configuration
28 config:
29   elasticHeapSize: 1024M
30
31 # default number of instances
32 replicaCount: 1
33
34 nodeSelector: {}
35
36 affinity: {}
37
38 # probe configuration parameters
39 liveness:
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
46 readiness:
47   initialDelaySeconds: 10
48   periodSeconds: 10
49
50 service:
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
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-es/ES
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