blob: 4d1f44fa367df2cd8464d8d396fbf21342f40c1c [file] [log] [blame]
Mike Elliott282a3872018-02-28 09:55:14 -05001#################################################################
2# Global configuration defaults.
3#################################################################
4global:
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
16repository: nexus3.onap.org:10001
17image: <onap-app>:<1.2-STAGING-latest>
18pullPolicy: Always
19
20# flag to enable debugging - application support required
21debugEnabled: false
22
23# application configuration
24# Example:
25config:
26# username: myusername
27# password: mypassword
28
29# default number of instances
30replicaCount: 1
31
32nodeSelector: {}
33
34affinity: {}
35
36# probe configuration parameters
37liveness:
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
44readiness:
45 initialDelaySeconds: 10
46 periodSeconds: 10
47
48service:
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
58ingress:
59 enabled: false
60
61resources: {}
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