ves-io-schema-k8s_cluster-API-Get
On This Page:
Examples of getting k8s_cluster
Usecase:
Get k8s-cluster-1 from current namespace
Request using vesctl:
vesctl configuration get k8s_cluster k8s-cluster-1 --namespace system
vesctl yaml response:
metadata:
annotations: {}
labels: {}
name: k8s-cluster-1
namespace: system
resourceVersion: "364"
spec:
localAccessConfig:
defaultPort: {}
localDomain: example.com
noGlobalAccess: {}
noInsecureRegistries: {}
useDefaultClusterRoleBindings: {}
useDefaultClusterRoles: {}
useDefaultPsp: {}
status: []
systemMetadata:
creationTimestamp: "2021-02-22T15:44:03.299316Z"
creatorClass: examplesvc
creatorId: examplesvc
finalizers: []
tenant: acmecorp
uid: 8be2e21b-bfcf-4ff3-bc4d-1bcd910081e1
Request using curl:
curl -X 'GET' -H 'X-Volterra-Useragent: v1/pgm=_tmp_go-build817539475_b001_apidocs.test/host=docker-desktop' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/system/k8s_clusters/k8s-cluster-1?response_format=0'
curl response:
HTTP/1.1 200 OK
Content-Length: 1006
Content-Type: application/json
Date: Mon, 22 Feb 2021 15:44:03 GMT
Vary: Accept-Encoding
{
"object": null,
"create_form": null,
"replace_form": null,
"resource_version": "364",
"metadata": {
"name": "k8s-cluster-1",
"namespace": "system",
"labels": {
},
"annotations": {
},
"description": "",
"disable": false
},
"system_metadata": {
"uid": "8be2e21b-bfcf-4ff3-bc4d-1bcd910081e1",
"creation_timestamp": "2021-02-22T15:44:03.299316Z",
"deletion_timestamp": null,
"modification_timestamp": null,
"initializers": null,
"finalizers": [
],
"tenant": "acmecorp",
"creator_class": "examplesvc",
"creator_id": "examplesvc",
"object_index": 0,
"owner_view": null
},
"spec": {
"local_access_config": {
"local_domain": "example.com",
"default_port": {
}
},
"no_global_access": {
},
"use_default_psp": {
},
"use_default_cluster_roles": {
},
"use_default_cluster_role_bindings": {
},
"no_insecure_registries": {
}
},
"status": [
]
}