Add Common Helm Chart "mariadb-galera"
[oom.git] / kubernetes / sdc / charts / sdc-kb / 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-kibana:1.2-STAGING-latest
18 pullPolicy: Always
19
20 # flag to enable debugging - application support required
21 debugEnabled: false
22
23 # default number of instances
24 replicaCount: 1
25
26 nodeSelector: {}
27
28 affinity: {}
29
30 # probe configuration parameters
31 liveness:
32   initialDelaySeconds: 10
33   periodSeconds: 10
34   # necessary to disable liveness probe when setting breakpoints
35   # in debugger so K8s doesn't restart unresponsive container
36   enabled: true
37
38 readiness:
39   initialDelaySeconds: 10
40   periodSeconds: 10
41
42 service:
43   type: ClusterIP
44   name: sdc-kb
45   externalPort: 5601
46   internalPort: 5601
47
48
49 sdc-es:
50   service:
51     name: sdc-es
52
53 ingress:
54   enabled: false
55
56 resources: {}
57   # We usually recommend not to specify default resources and to leave this as a conscious
58   # choice for the user. This also increases chances charts run on environments with little
59   # resources, such as Minikube. If you do want to specify resources, uncomment the following
60   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
61   #
62   # Example:
63   # Configure resource requests and limits
64   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
65   # Minimum memory for development is 2 CPU cores and 4GB memory
66   # Minimum memory for production is 4 CPU cores and 8GB memory
67 #resources:
68 #  limits:
69 #    cpu: 2
70 #    memory: 4Gi
71 #  requests:
72 #    cpu: 2
73 #    memory: 4Gi