Removal of custom QoS HEAT templates.

This commit removes the HEAT templates involved with
the custom QoS extension.

Story: 2003948
Task: 26862

Change-Id: Ibec78b67fff5baa2d43d9e6ddb643b1e7ff5b2dd
Signed-off-by: Patrick Bonnell <patrick.bonnell@windriver.com>
This commit is contained in:
Patrick Bonnell 2018-11-28 14:51:17 -05:00
parent 3997f1e574
commit 04f52c87b2
3 changed files with 1 additions and 131 deletions

View File

@ -1,4 +1,4 @@
Copyright © 2014-2017 Wind River Systems, Inc.
Copyright © 2014-2018 Wind River Systems, Inc.
SPDX-License-Identifier: Apache-2.0
-----------------------------------------------------------------------
@ -123,10 +123,6 @@ the hot/simple/ directory, in a YAML file named after the heat resource.
WR_Neutron_ProviderNetRange.yaml - Creates a segment id range for a Provider Network;
specifying the providerNet, and the min and max values
of the segment id range.
WR_Neutron_QoSPolicy.yaml - Creates a Neutron QoS Policy which specifies a packet
scheduling weight. This QoS Policy can be referenced
by a Tenant Network to modify the scheduling weight of
AVS ingress traffic from VMs for this Tenant Network.

View File

@ -1,59 +0,0 @@
################################################################################
## Copyright (c) 2017 Wind River Systems, Inc.
##
## SPDX-License-Identifier: Apache-2.0
##
#################################################################################
##
## Objectives:
## Create a wrs-qos policy and a new network with it attached
##
##
## Mandatory Template Parameters:
## None
##
## Tenant Considerations:
## None
##
## Sample CLI syntax:
## heat stack-create -f WRSQoSPolicy.yaml STACK
##
## Expected Outcome:
## A new WRS_qos policy and network are created
## The new wrs_qos policy is attached to the network
##
#################################################################################
heat_template_version: 2015-04-30
description: >
Demonstrate creating a wrs-qos policy and a new network with it attached
parameters:
QOS_NAME:
description: name for the new wrs_qos
type: string
default: example_qos
NET_NAME:
description: name for the new network
type: string
default: example_net
resources:
ex-qos:
type: WR::Neutron::QoSPolicy
properties:
description: 'Example Network Policy'
name: { get_param: QOS_NAME }
policies:
scheduler:
weight: 16
ex-net:
type: OS::Neutron::Net
properties:
name: { get_param: NET_NAME }
shared: true
wrs_qos: {get_resource: ex-qos }

View File

@ -1,67 +0,0 @@
###############################################################################
# Copyright (c) 2013-2015 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
################################################################################
#
# Objective:
# Demonstrate constructing the heat resource WR::Neutron::QosPolicy
#
# Pre-Reqs:
# Normal Lab Setup (networks, host interfaces, glance images)
#
# Mandatory Template Parameters:
# None
#
# Tenant Considerations:
# An admin activity
#
# Sample CLI syntax:
# heat stack-create -f WR_Neutron_QoSPolicy.yaml STACK
#
# Expected Outcome:
# A new qos policy called SampleQoS
# neutron qos-list
#
################################################################################
heat_template_version: 2015-04-30
description: >
Demonstrate the WR::Neutron::QoSPolicy heat resource
parameters:
NAME:
description: Name of the QoS policy
type: string
default: SampleQoS
DESCRIPTION:
description: Description of the QoS policy
type: string
default: 'A simple QoS policy'
resources:
WR_Neutron_QoSPolicy:
type: WR::Neutron::QoSPolicy
properties:
# required properties
name: { get_param: NAME }
# optional properties
description: { get_param: DESCRIPTION }
# tenant-id: { get_param: TENANT_ID}
policies: {
scheduler: { weight: 16 },
# dscp: { dscp: 10 }
}
outputs:
qos_show:
description: All attributes of the QoS policy
value: { get_attr: [ WR_Neutron_QoSPolicy, show] }