heat: add xerces onap environment to create-stack role

Change-Id: Ib789fed71140391d876b4b35cd43d39d099020af
diff --git a/playbooks/roles/create-stack/files/heat-environment-xerces-ubuntu1804-onap.yaml b/playbooks/roles/create-stack/files/heat-environment-xerces-ubuntu1804-onap.yaml
new file mode 100644
index 0000000..f4a5e75
--- /dev/null
+++ b/playbooks/roles/create-stack/files/heat-environment-xerces-ubuntu1804-onap.yaml
@@ -0,0 +1,58 @@
+---
+# ============LICENSE_START=======================================================
+#  Copyright (C) 2019 The Nordix Foundation. All rights reserved.
+# ================================================================================
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# SPDX-License-Identifier: Apache-2.0
+# ============LICENSE_END=========================================================
+
+# this is an example heat environment file for the purposes of testing ONAP
+# deployments
+parameters:
+  # parameters for jumphost
+  # needs to have enough space for a big offline package
+  jumphost_image: 'Ubuntu 18.04'
+  jumphost_flavor: c4m16
+  jumphost_volume_size: 250
+
+  # parameters for master nodes
+  no_of_master_nodes: 1
+  master_image: 'Ubuntu 18.04'
+  master_flavor: c2m4
+  master_volume_size: 0
+
+  # parameters for worker nodes
+  # being quite generous in allocation as don't want failures due
+  # to lack of resources when trying to deploy full onap as it will be
+  # very time consuming
+  no_of_worker_nodes: 6
+  worker_image: 'Ubuntu 18.04'
+  worker_flavor: c16m32
+  worker_volume_size: 0
+
+  # parameters for storage nodes
+  # also being generous with allocation here; should be good for
+  # up to 2 additional OSDs
+  no_of_storage_nodes: 1
+  storage_image: 'Ubuntu 18.04'
+  storage_flavor: c16m32
+  storage_volume_size: 0
+  storage_ceph_volume_size: 150
+
+  # common parameters
+  public_network: internet
+  dns_nameservers: ['8.8.8.8', '8.8.4.4', '1.1.1.1']
+  use_tenant_network: true
+
+# vim: set ts=2 sw=2 expandtab: