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