f5os_qos_traffic_priority – Manage QoS Traffic Priorities on F5OS

New in version 1.15.0.

Synopsis

  • Manage QoS Traffic Priorities on F5OS.

Parameters

Parameter Choices/Defaults Configuration Comments
default_qos
string
    Choices:
  • 802.1p
  • dscp
Specifies the QoS for which the specified traffic priority will act as the default one.
name
string
Specifies the name of the traffic priority.
qos_status
string
    Choices:
  • disable
  • 802.1p
  • dscp
Specifies the status of the QoS.
state
string
    Choices:
  • present ←
  • absent
If present, this option creates qkview file on specified remote host.
If absent, this option deletes qkview file on the device (if it exists).
When deleting a traffic priority make sure it is not the default for any QoS.

Examples

- name: Create traffic priority on Velos
  f5os_qos_traffic_priority:
    name: test_traffic_priority
    default_qos: "802.1p"
    qos_status: "802.1p"

- name: Delete traffic priority on Velos
  f5os_qos_traffic_priority:
    name: test_traffic_priority
    state: absent

Return Values

The following are the fields unique to this module:

Key Returned Description
default_qos
string
changed
The QoS for which the traffic priority is default for.

Sample:
802.1p
name
string
changed
The name of the traffic priority.

Sample:
test_tf
qos_status
string
changed
The status of the QoS.

Sample:
802.1


Status

Authors

  • Rohit Upadhyay (@urohit011)