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