Event Gateway Virtual Clusters
Update Virtual Cluster
Updates an existing virtual cluster associated with the specified Event Gateway.
put/v1/event-gateways/{gatewayId}/virtual-clusters/{virtualClusterId}
Request body
Example request
{
"authentication": [
{
"principals": [
{
"password": "${vault.env['MY_ENV_VAR']}"
}
]
}
],
"dns_label": "vcluster-1",
"labels": {
"env": "test"
}
}Response
Updated virtual cluster object.
Example response
{
"authentication": [
{
"principals": [
{
"password": "${vault.env['MY_ENV_VAR']}"
}
]
}
],
"dns_label": "vcluster-1",
"labels": {
"env": "test"
},
"created_at": "2022-11-04T20:10:06.927Z",
"updated_at": "2022-11-04T20:10:06.927Z"
}