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