Merge "Fixed typo in quickstart guide"
[oom.git] / kubernetes / sdc / charts / sdc-fe / 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-frontend: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   #Example service definition with external, internal and node ports.
44   #Services may use any combination of ports depending on the 'type' of
45   #service being defined.
46   type: NodePort
47   name: sdc-fe
48   nodePort: "06"
49   internalPort: 8181
50   nodePort2: "07"
51   internalPort2: 9443
52
53
54
55 ingress:
56   enabled: false
57
58 resources: {}
59   # We usually recommend not to specify default resources and to leave this as a conscious
60   # choice for the user. This also increases chances charts run on environments with little
61   # resources, such as Minikube. If you do want to specify resources, uncomment the following
62   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
63   #
64   # Example:
65   # Configure resource requests and limits
66   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
67   # Minimum memory for development is 2 CPU cores and 4GB memory
68   # Minimum memory for production is 4 CPU cores and 8GB memory
69 #resources:
70 #  limits:
71 #    cpu: 2
72 #    memory: 4Gi
73 #  requests:
74 #    cpu: 2
75 #    memory: 4Gi