blob: 4700bb64e53a99a13600c67ed73a287e3eab5254 [file] [log] [blame]
Mike Elliottd32d36e2018-02-12 15:54:03 -05001# Default values for so.
2# This is a YAML-formatted file.
3# Declare variables to be passed into your templates.
4global: # global defaults
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
Mandeep Khindaa57d8dd2018-03-09 14:29:37 +000012subChartsOnly:
13 enabled: true
Mike Elliottd32d36e2018-02-12 15:54:03 -050014
15# application image
16repository: nexus3.onap.org:10001
17image: openecomp/mso:1.2-STAGING-latest
18pullPolicy: Always
19
20# flag to enable debugging - application support required
21debugEnabled: false
22
23# application configuration
24config:
25 # message router configuration
26 dmaapTopic: "AUTO"
27 # openstack configuration
28 openStackUserName: "vnf_user"
29 openStackRegion: "RegionOne"
30 openStackKeyStoneUrl: "http://1.2.3.4:5000"
31 openStackServiceTenantName: "service"
32 openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e"
33
34
35# default number of instances
36replicaCount: 1
37
38nodeSelector: {}
39
40affinity: {}
41
42# probe configuration parameters
43liveness:
44 initialDelaySeconds: 10
45 periodSeconds: 10
46 # necessary to disable liveness probe when setting breakpoints
47 # in debugger so K8s doesn't restart unresponsive container
48 enabled: true
49
50readiness:
51 initialDelaySeconds: 10
52 periodSeconds: 10
53
54service:
55 type: NodePort
56 name: so
57 externalPort: 23
58 internalPort: 8080
59 externalPort2: 25
60 internalPort2: 3904
61 externalPort3: 24
62 internalPort3: 3905
63 externalPort4: 22
64 internalPort4: 9990
65 externalPort5: 50
66 internalPort5: 8787
67
68ingress:
69 enabled: false
70
71resources: {}
72 # We usually recommend not to specify default resources and to leave this as a conscious
73 # choice for the user. This also increases chances charts run on environments with little
74 # resources, such as Minikube. If you do want to specify resources, uncomment the following
75 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
76 #
77 # Example:
78 # Configure resource requests and limits
79 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
80 # Minimum memory for development is 2 CPU cores and 4GB memory
81 # Minimum memory for production is 4 CPU cores and 8GB memory
82#resources:
83# limits:
84# cpu: 2
85# memory: 4Gi
86# requests:
87# cpu: 2
88# memory: 4Gi