Add Helm Chart "template" Starter
[oom.git] / kubernetes / helm / starters / onap-app / 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: <onap-app>:<1.2-STAGING-latest>
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   #Example service definition with external, internal and node ports.
50   #Services may use any combination of ports depending on the 'type' of
51   #service being defined.
52   type: NodePort
53   name: <onap-app>
54   externalPort: <8080>
55   internalPort: <80>
56   nodePort: <replace with unused node port suffix eg. 23>
57
58 ingress:
59   enabled: false
60
61 resources: {}
62   # We usually recommend not to specify default resources and to leave this as a conscious
63   # choice for the user. This also increases chances charts run on environments with little
64   # resources, such as Minikube. If you do want to specify resources, uncomment the following
65   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
66   #
67   # Example:
68   # Configure resource requests and limits
69   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
70   # Minimum memory for development is 2 CPU cores and 4GB memory
71   # Minimum memory for production is 4 CPU cores and 8GB memory
72 #resources:
73 #  limits:
74 #    cpu: 2
75 #    memory: 4Gi
76 #  requests:
77 #    cpu: 2
78 #    memory: 4Gi