POST /api/v1/bindings HTTP/1.1 Authorization: Bearer $TOKEN Accept: application/json Connection: close Content-Type: application/json' { "kind": "Binding", "apiVersion": "v1", ... }
Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead.
Expand or mouse-over a field for more information about it.
apiVersion:kind:Collapse allmetadata:
Collapse allannotations:
[string]:clusterName:creationTimestamp:deletionGracePeriodSeconds:deletionTimestamp:Collapse allfinalizers:
- [string]:generateName:generation:Collapse allinitializers:
Collapse allpending:
- name:Collapse allresult:
apiVersion:code:Collapse alldetails:
Collapse allcauses:
- field:message:reason:group:kind:name:retryAfterSeconds:uid:kind:message:Collapse allmetadata:
resourceVersion:selfLink:reason:status:Collapse alllabels:
[string]:name:namespace:Collapse allownerReferences:
- apiVersion:blockOwnerDeletion:controller:kind:name:uid:resourceVersion:selfLink:uid:Collapse alltarget:
apiVersion:fieldPath:kind:name:namespace:resourceVersion:uid:
Create a Binding
POST /api/v1/bindings HTTP/1.1 Authorization: Bearer $TOKEN Accept: application/json Connection: close Content-Type: application/json' { "kind": "Binding", "apiVersion": "v1", ... }
Create a Binding
POST /api/v1/namespaces/$NAMESPACE/bindings HTTP/1.1 Authorization: Bearer $TOKEN Accept: application/json Connection: close Content-Type: application/json' { "kind": "Binding", "apiVersion": "v1", ... }
$ curl -k \ -X POST \ -d @- \ -H "Authorization: Bearer $TOKEN" \ -H 'Accept: application/json' \ -H 'Content-Type: application/json' \ https://$ENDPOINT/api/v1/namespaces/$NAMESPACE/bindings <<'EOF' { "kind": "Binding", "apiVersion": "v1", ... } EOF