blob: 0540d0d928c89a5d5b9f7ce01ad51bc3090a2054 [file] [log] [blame]
BorislavG0433c912018-03-21 18:35:30 +02001#################################################################
2# Global configuration defaults.
3#################################################################
4global:
5 nodePortPrefix: 302
6 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
7 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +00008 readinessImage: readiness-check:2.0.0
BorislavG0433c912018-03-21 18:35:30 +02009
10#################################################################
11# Application configuration defaults.
12#################################################################
13# application image
14repository: nexus3.onap.org:10001
15image: onap/msb/msb_apigateway:1.1.0-SNAPSHOT-latest
16pullPolicy: Always
17
18# application configuration
19config:
20 routeLabels: "visualRange:0"
21
22# default number of instances
23replicaCount: 1
24
25nodeSelector: {}
26
27affinity: {}
28
29# probe configuration parameters
30liveness:
31 initialDelaySeconds: 10
32 periodSeconds: 10
33 # necessary to disable liveness probe when setting breakpoints
34 # in debugger so K8s doesn't restart unresponsive container
35 enabled: true
36
37readiness:
38 initialDelaySeconds: 10
39 periodSeconds: 10
40
41service:
42 type: NodePort
43 name: msb-eag
44 externalPort: 80
45 internalPort: 80
46 nodePort: 82
47 externalPortHttps: 443
48 internalPortHttps: 443
49 nodePortHttps: 84
50
51ingress:
52 enabled: false
53
54resources: {}
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