Merge "Update vfc charts configutation"
[oom.git] / kubernetes / robot / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global: # global defaults
19   nodePortPrefix: 302
20   repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
21   ubuntuInitRepository: registry.hub.docker.com
22
23 # application image
24 repository: nexus3.onap.org:10001
25 image: onap/testsuite:1.2-STAGING-latest
26 pullPolicy: Always
27
28 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
29
30 # flag to enable debugging - application support required
31 debugEnabled: false
32
33 #################################################################
34 # Application configuration defaults.
35 #################################################################
36 config:
37   # Username of the lighthttpd server.  Used for HTML auth for webpage access
38   lightHttpdUsername: robot
39   # Password of the lighthttpd server.  Used for HTML auth for webpage access
40   lightHttpdPassword: robot
41   # gerrit branch where the latest heat code is checked in
42   gerritBranch: master
43   # gerrit project where the latest heat code is checked in
44   gerritProject: http://gerrit.onap.org/r/demo.git
45
46
47 # Demo configuration
48 # Nexus demo artifact version.  Maps to GLOBAL_INJECTED_ARTIFACTS_VERSION
49 demoArtifactsVersion: "1.2.0-SNAPSHOT"
50 # Openstack medium sized flavour name.  Maps GLOBAL_INJECTED_VM_FLAVOR
51 openStackFlavourMedium: "m1.medium"
52 # Openstack keystone URL.  Maps to GLOBAL_INJECTED_KEYSTONE
53 openStackKeyStoneUrl: "http://1.2.3.4:5000"
54 # UUID of the Openstack network that can assign floating ips.  Maps to GLOBAL_INJECTED_PUBLIC_NET_ID
55 openStackPublicNetId: "e8f51958045716781ffc"
56 # password for Openstack tenant where VNFs will be spawned.  Maps to GLOBAL_INJECTED_OPENSTACK_PASSWORD
57 openStackPassword: "tenantPassword"
58 # Openstack region.  Maps to GLOBAL_INJECTED_REGION
59 openStackRegion: "RegionOne"
60 # Openstack tenant UUID where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_TENANT_ID
61 openStackTenantId: "47899782ed714295b1151681fdfd51f5"
62 # username for Openstack tenant where VNFs will be spawned.  Maps to GLOBAL_INJECTED_OPENSTACK_USERNAME
63 openStackUserName: "tenantUsername"
64 # Openstack glance image name for Ubuntu 14.  Maps to GLOBAL_INJECTED_UBUNTU_1404_IMAGE
65 ubuntu14Image: "Ubuntu_14_trusty"
66 # Openstack glance image name for Ubuntu 16.  Maps to GLOBAL_INJECTED_UBUNTU_1604_IMAGE
67 ubuntu16Image: "Ubuntu_16_xenial"
68 # GLOBAL_INJECTED_SCRIPT_VERSION.  Maps to GLOBAL_INJECTED_SCRIPT_VERSION
69 scriptVersion: "1.2.0-SNAPSHOT"
70 # Openstack network to which VNFs will bind their primary (first) interface.  Maps to GLOBAL_INJECTED_NETWORK
71 openStackPrivateNetId: "e8f51956-00dd-4425-af36-045716781ffc"
72
73 # SDNC Preload configuration
74 # Openstack subnet UUID for the network defined by openStackPrivateNetId.  Maps to onap_private_subnet_id
75 openStackPrivateSubnetId: "e8f51956-00dd-4425-af36-045716781ffc"
76 # CIDR notation for the Openstack private network where VNFs will be spawned.  Maps to onap_private_net_cidr
77 openStackPrivateNetCidr: "10.0.0.0/8"
78 # The first 2 octets of the private Openstack subnet where VNFs will be spawned.
79 # Needed because sdnc preload templates hardcodes things like this 10.0.${ecompnet}.X
80 openStackOamNetworkCidrPrefix: "10.0"
81
82 # default number of instances
83 replicaCount: 1
84
85 nodeSelector: {}
86
87 affinity: {}
88
89 # probe configuration parameters
90 liveness:
91   initialDelaySeconds: 10
92   periodSeconds: 10
93   # necessary to disable liveness probe when setting breakpoints
94   # in debugger so K8s doesn't restart unresponsive container
95   enabled: true
96
97 readiness:
98   initialDelaySeconds: 10
99   periodSeconds: 10
100
101
102 service:
103   name: robot
104   type: NodePort
105   portName: httpd
106   externalPort: 88
107   internalPort: 88
108   nodePort: "09"
109
110
111 ingress:
112   enabled: false
113
114
115 resources: {}
116   # We usually recommend not to specify default resources and to leave this as a conscious
117   # choice for the user. This also increases chances charts run on environments with little
118   # resources, such as Minikube. If you do want to specify resources, uncomment the following
119   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
120   #
121   # Example:
122   # Configure resource requests and limits
123   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
124   # Minimum memory for development is 2 CPU cores and 4GB memory
125   # Minimum memory for production is 4 CPU cores and 8GB memory
126 #resources:
127 #  limits:
128 #    cpu: 2
129 #    memory: 4Gi
130 #  requests:
131 #    cpu: 2
132 #    memory: 4Gi