blob: cc81b9d1101331e65d47f368734b6b1961903937 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# 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
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000015#################################################################
16# Global configuration defaults.
17#################################################################
18global: # global defaults
19 nodePortPrefix: 302
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000020 ubuntuInitRepository: registry.hub.docker.com
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000021
22# application image
23repository: nexus3.onap.org:10001
Gary Wu46621662018-05-30 14:30:47 -070024image: onap/testsuite:1.2.1
kerenjfc2caa62017-08-23 12:46:02 +000025pullPolicy: Always
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000026
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000027ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
28
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000029# flag to enable debugging - application support required
30debugEnabled: false
31
32#################################################################
33# Application configuration defaults.
34#################################################################
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000035config:
36 # Username of the lighthttpd server. Used for HTML auth for webpage access
37 lightHttpdUsername: robot
38 # Password of the lighthttpd server. Used for HTML auth for webpage access
39 lightHttpdPassword: robot
40 # gerrit branch where the latest heat code is checked in
41 gerritBranch: master
42 # gerrit project where the latest heat code is checked in
43 gerritProject: http://gerrit.onap.org/r/demo.git
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000044
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000045
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000046# Demo configuration
47# Nexus demo artifact version. Maps to GLOBAL_INJECTED_ARTIFACTS_VERSION
Mandeep Khinda930bd692018-03-20 21:00:33 +000048demoArtifactsVersion: "1.2.0-SNAPSHOT"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000049# Openstack medium sized flavour name. Maps GLOBAL_INJECTED_VM_FLAVOR
vaibhav_16dec0947cdf2018-01-17 15:40:59 +000050openStackFlavourMedium: "m1.medium"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000051# Openstack keystone URL. Maps to GLOBAL_INJECTED_KEYSTONE
vaibhav_16dec0947cdf2018-01-17 15:40:59 +000052openStackKeyStoneUrl: "http://1.2.3.4:5000"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000053# UUID of the Openstack network that can assign floating ips. Maps to GLOBAL_INJECTED_PUBLIC_NET_ID
vaibhav_16dec0947cdf2018-01-17 15:40:59 +000054openStackPublicNetId: "e8f51958045716781ffc"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000055# password for Openstack tenant where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_PASSWORD
56openStackPassword: "tenantPassword"
57# Openstack region. Maps to GLOBAL_INJECTED_REGION
vaibhav_16dec0947cdf2018-01-17 15:40:59 +000058openStackRegion: "RegionOne"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000059# Openstack tenant UUID where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_TENANT_ID
vaibhav_16dec0947cdf2018-01-17 15:40:59 +000060openStackTenantId: "47899782ed714295b1151681fdfd51f5"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000061# username for Openstack tenant where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_USERNAME
62openStackUserName: "tenantUsername"
63# Openstack glance image name for Ubuntu 14. Maps to GLOBAL_INJECTED_UBUNTU_1404_IMAGE
64ubuntu14Image: "Ubuntu_14_trusty"
65# Openstack glance image name for Ubuntu 16. Maps to GLOBAL_INJECTED_UBUNTU_1604_IMAGE
66ubuntu16Image: "Ubuntu_16_xenial"
67# GLOBAL_INJECTED_SCRIPT_VERSION. Maps to GLOBAL_INJECTED_SCRIPT_VERSION
68scriptVersion: "1.2.0-SNAPSHOT"
69# Openstack network to which VNFs will bind their primary (first) interface. Maps to GLOBAL_INJECTED_NETWORK
70openStackPrivateNetId: "e8f51956-00dd-4425-af36-045716781ffc"
71
72# SDNC Preload configuration
73# Openstack subnet UUID for the network defined by openStackPrivateNetId. Maps to onap_private_subnet_id
74openStackPrivateSubnetId: "e8f51956-00dd-4425-af36-045716781ffc"
75# CIDR notation for the Openstack private network where VNFs will be spawned. Maps to onap_private_net_cidr
76openStackPrivateNetCidr: "10.0.0.0/8"
77# The first 2 octets of the private Openstack subnet where VNFs will be spawned.
78# Needed because sdnc preload templates hardcodes things like this 10.0.${ecompnet}.X
79openStackOamNetworkCidrPrefix: "10.0"
Brian Freeman1fb36e62018-05-14 13:49:03 -050080# Override with Pub Key for access to VNF
81vnfPubKey: "FILL_IN_WITH_PUB_KEY"
82# Override with DCAE VES Collector external IP
83dcaeCollectorIp: "FILL_IN_WITH_DCAE_VES_COLLECTOR_IP"
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000084
85# default number of instances
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000086replicaCount: 1
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000087
88nodeSelector: {}
89
90affinity: {}
91
92# probe configuration parameters
93liveness:
94 initialDelaySeconds: 10
95 periodSeconds: 10
96 # necessary to disable liveness probe when setting breakpoints
97 # in debugger so K8s doesn't restart unresponsive container
98 enabled: true
99
100readiness:
101 initialDelaySeconds: 10
102 periodSeconds: 10
103
104
105service:
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000106 name: robot
Mandeep Khinda7ea563e2018-04-17 03:26:26 +0000107 type: NodePort
108 portName: httpd
109 externalPort: 88
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000110 internalPort: 88
Mandeep Khinda7ea563e2018-04-17 03:26:26 +0000111 nodePort: "09"
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000112
113
114ingress:
115 enabled: false
116
117
118resources: {}
119 # We usually recommend not to specify default resources and to leave this as a conscious
120 # choice for the user. This also increases chances charts run on environments with little
121 # resources, such as Minikube. If you do want to specify resources, uncomment the following
122 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
123 #
124 # Example:
125 # Configure resource requests and limits
126 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
127 # Minimum memory for development is 2 CPU cores and 4GB memory
128 # Minimum memory for production is 4 CPU cores and 8GB memory
129#resources:
130# limits:
131# cpu: 2
132# memory: 4Gi
133# requests:
134# cpu: 2
135# memory: 4Gi