blob: a842673930b82fdd40cb89d35c178d9428eafed9 [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
20 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000021 ubuntuInitRepository: registry.hub.docker.com
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000022
23# application image
24repository: nexus3.onap.org:10001
Gary Wud5951722018-04-04 19:00:44 -070025image: onap/testsuite:1.2-STAGING-latest
kerenjfc2caa62017-08-23 12:46:02 +000026pullPolicy: Always
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000027
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000028ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
29
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000030# flag to enable debugging - application support required
31debugEnabled: false
32
33#################################################################
34# Application configuration defaults.
35#################################################################
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000036config:
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
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000045
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000046
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000047# Demo configuration
48# Nexus demo artifact version. Maps to GLOBAL_INJECTED_ARTIFACTS_VERSION
Mandeep Khinda930bd692018-03-20 21:00:33 +000049demoArtifactsVersion: "1.2.0-SNAPSHOT"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000050# Openstack medium sized flavour name. Maps GLOBAL_INJECTED_VM_FLAVOR
vaibhav_16dec0947cdf2018-01-17 15:40:59 +000051openStackFlavourMedium: "m1.medium"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000052# Openstack keystone URL. Maps to GLOBAL_INJECTED_KEYSTONE
vaibhav_16dec0947cdf2018-01-17 15:40:59 +000053openStackKeyStoneUrl: "http://1.2.3.4:5000"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000054# UUID of the Openstack network that can assign floating ips. Maps to GLOBAL_INJECTED_PUBLIC_NET_ID
vaibhav_16dec0947cdf2018-01-17 15:40:59 +000055openStackPublicNetId: "e8f51958045716781ffc"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000056# password for Openstack tenant where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_PASSWORD
57openStackPassword: "tenantPassword"
58# Openstack region. Maps to GLOBAL_INJECTED_REGION
vaibhav_16dec0947cdf2018-01-17 15:40:59 +000059openStackRegion: "RegionOne"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000060# Openstack tenant UUID where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_TENANT_ID
vaibhav_16dec0947cdf2018-01-17 15:40:59 +000061openStackTenantId: "47899782ed714295b1151681fdfd51f5"
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000062# username for Openstack tenant where VNFs will be spawned. Maps to GLOBAL_INJECTED_OPENSTACK_USERNAME
63openStackUserName: "tenantUsername"
64# Openstack glance image name for Ubuntu 14. Maps to GLOBAL_INJECTED_UBUNTU_1404_IMAGE
65ubuntu14Image: "Ubuntu_14_trusty"
66# Openstack glance image name for Ubuntu 16. Maps to GLOBAL_INJECTED_UBUNTU_1604_IMAGE
67ubuntu16Image: "Ubuntu_16_xenial"
68# GLOBAL_INJECTED_SCRIPT_VERSION. Maps to GLOBAL_INJECTED_SCRIPT_VERSION
69scriptVersion: "1.2.0-SNAPSHOT"
70# Openstack network to which VNFs will bind their primary (first) interface. Maps to GLOBAL_INJECTED_NETWORK
71openStackPrivateNetId: "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
75openStackPrivateSubnetId: "e8f51956-00dd-4425-af36-045716781ffc"
76# CIDR notation for the Openstack private network where VNFs will be spawned. Maps to onap_private_net_cidr
77openStackPrivateNetCidr: "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
80openStackOamNetworkCidrPrefix: "10.0"
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000081
82# default number of instances
Mandeep Khinda7ea563e2018-04-17 03:26:26 +000083replicaCount: 1
vaibhav_16decd3bc08f2018-03-15 07:05:10 +000084
85nodeSelector: {}
86
87affinity: {}
88
89# probe configuration parameters
90liveness:
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
97readiness:
98 initialDelaySeconds: 10
99 periodSeconds: 10
100
101
102service:
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000103 name: robot
Mandeep Khinda7ea563e2018-04-17 03:26:26 +0000104 type: NodePort
105 portName: httpd
106 externalPort: 88
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000107 internalPort: 88
Mandeep Khinda7ea563e2018-04-17 03:26:26 +0000108 nodePort: "09"
vaibhav_16decd3bc08f2018-03-15 07:05:10 +0000109
110
111ingress:
112 enabled: false
113
114
115resources: {}
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