ves-io-schema-policer-API-Create
On This Page:
Examples of creating policer
Usecase:
Create policer-1 with 10kBps committed information rate and 10kB burst size
Request using vesctl:
vesctl configuration create policer -i policer.yaml
where file policer.yaml has following contents (policer.CreateRequest):
metadata:
name: policer-1
namespace: documentation
spec:
burstSize: 10000
committedInformationRate: 10000
policerMode: POLICER_MODE_SHARED
vesctl yaml response:
metadata:
annotations: {}
labels: {}
name: policer-1
namespace: documentation
spec:
burstSize: 10000
committedInformationRate: 10000
policerMode: POLICER_MODE_SHARED
systemMetadata:
creationTimestamp: "2021-03-31T08:29:39.059469Z"
creatorClass: examplesvc
creatorId: examplesvc
finalizers: []
tenant: acmecorp
uid: 2e973322-ff91-404e-bcae-4e5655eded1c
Request using curl:
curl -X 'POST' -d '{"metadata":{"name":"policer-1","namespace":"documentation"},"spec":{"committedInformationRate":10000,"burstSize":10000,"policerMode":"POLICER_MODE_SHARED"}}' -H 'Content-Type: application/json' -H 'X-Volterra-Useragent: v1/pgm=_tmp_go-build318584715_b001_apidocs.test/host=docker-desktop' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/documentation/policers'
curl response:
HTTP/1.1 200 OK
Content-Length: 751
Content-Type: application/json
Date: Wed, 31 Mar 2021 08:29:39 GMT
Vary: Accept-Encoding
{
"metadata": {
"name": "policer-1",
"namespace": "documentation",
"labels": {
},
"annotations": {
},
"description": "",
"disable": false
},
"system_metadata": {
"uid": "2e973322-ff91-404e-bcae-4e5655eded1c",
"creation_timestamp": "2021-03-31T08:29:39.059469Z",
"deletion_timestamp": null,
"modification_timestamp": null,
"initializers": null,
"finalizers": [
],
"tenant": "acmecorp",
"creator_class": "examplesvc",
"creator_id": "examplesvc",
"object_index": 0,
"owner_view": null
},
"spec": {
"policer_type": "POLICER_SINGLE_RATE_TWO_COLOR",
"committed_information_rate": 10000,
"burst_size": 10000,
"policer_mode": "POLICER_MODE_SHARED"
}
}