Merge "Robot Helm Chart Standardization"
[oom.git] / kubernetes / robot / values.yaml
1 #################################################################
2 # Global configuration defaults.
3 #################################################################
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 subChartsOnly:
13   enabled: true
14
15 # application image
16 repository: nexus3.onap.org:10001
17 image: openecomp/testsuite:1.1-STAGING-latest
18 pullPolicy: Always
19
20 # flag to enable debugging - application support required
21 debugEnabled: false
22
23 #################################################################
24 # Application configuration defaults.
25 #################################################################
26
27 # openstack configuration
28
29 demoArtifactsVersion: "1.1.0-SNAPSHOT"
30 openStackPrivateNetCidr: "192.168.30.0"
31 openStackFlavourMedium: "m1.medium"
32 openStackKeyStoneUrl: "http://1.2.3.4:5000"
33 openStackPublicNetId: "e8f51958045716781ffc"
34 openStackPrivateNetId: "e8f51956-00dd-4425-af36-045716781ffc"
35 openStackOamNetworkCidrPrefix: "192.168.120"
36 openStackEncryptedPassword: "c124921a3a0efbe579782cde8227681e"
37 openStackRegion: "RegionOne"
38 openStackPrivateSubnetId: "e8f51956-00dd-4425-af36-045716781ffc"
39 openStackTenantId: "47899782ed714295b1151681fdfd51f5"
40 openStackUserName: "vnf_user"
41 ubuntuImage: "Ubuntu_14.04.5_LTS"
42
43 # default number of instances
44 robotReplicas: 1
45
46 nodeSelector: {}
47
48 affinity: {}
49
50 # probe configuration parameters
51 liveness:
52   initialDelaySeconds: 10
53   periodSeconds: 10
54   # necessary to disable liveness probe when setting breakpoints
55   # in debugger so K8s doesn't restart unresponsive container
56   enabled: true
57
58 readiness:
59   initialDelaySeconds: 10
60   periodSeconds: 10
61
62
63 service:
64   type: NodePort
65   name: robot
66   externalPort: "09"
67   internalPort: 88
68
69
70 ingress:
71   enabled: false
72
73
74 resources: {}
75   # We usually recommend not to specify default resources and to leave this as a conscious
76   # choice for the user. This also increases chances charts run on environments with little
77   # resources, such as Minikube. If you do want to specify resources, uncomment the following
78   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
79   #
80   # Example:
81   # Configure resource requests and limits
82   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
83   # Minimum memory for development is 2 CPU cores and 4GB memory
84   # Minimum memory for production is 4 CPU cores and 8GB memory
85 #resources:
86 #  limits:
87 #    cpu: 2
88 #    memory: 4Gi
89 #  requests:
90 #    cpu: 2
91 #    memory: 4Gi