Overview

DescriptionUpdate the host node (slave node) in a Kubernetes-CoreOS group.
Resource Path/kubernetes/update/host
HTTP MethodPUT
Request/Response Formatapplication/json

Sample JSON request

{
  "clusterId": "kubernetes-cluster-1",
  "hostId": "minion-1",
  "hostname": "minion-1.dev.kubernetes.org",
  "privateIPAddress": "172.14.8.102",
  "publicIPAddress": "172.14.8.102",
  "property": [
    
  ]
}

For information on all the properties that can be used in a Kubernetes Host definition, see the Kubernetes Host Resource Definition.

> PUT /api/kubernetes/update/host HTTP/1.1
> Authorization: Basic YWRtaW46YWRtaW4=
> User-Agent: curl/7.24.0 (x86_64-apple-darwin12.0) libcurl/7.24.0 OpenSSL/0.9.8| zlib/1.2.5
> Host: localhost:9443
> Accept: */*
> Content-Type: application/json
> Content-Length: 277
>
* upload completely sent off: 277 out of 277 bytes
< HTTP/1.1 200 OK
< Date: Tue, 07 Apr 2015 08:38:27 GMT
< Location: https://localhost:9443/api/kubernetes/update/host/minion-1
< Content-Type: application/json
< Transfer-Encoding: chunked
< Server: WSO2 Carbon Server
<
{"status":"success","message":"Kubernetes Host updated successfully: [kub-host] minion-1"}
curl -X PUT -H "Content-Type: application/json" -d @'<JSON_PAYLOAD>' -k -v -u admin:admin https://<STRATOS_HOST>:<STRATOS_HTTPS_PORT>/api/kubernetes/update/host
  • The path to the JSON file that defines the Kubernetes-CoreOS host needs to be defined as the <JSON_PAYLOAD> value.

  • By default, <STRATOS_HOST> is localhost. However, if you are using a public IP, the respective IP address or domain needs to be specified.
  • By default, <STRATOS_HTTPS_PORT> has been set to 9443. However, if the port offset has been incremented by n, the default port value needs to be incremented by n.

For example:

curl -X PUT -H "Content-Type: application/json" -d @'kubernetes-cluster3.json' -k -v -u admin:admin https://localhost:9443/api/kubernetes/update/host

CLI command

update-kubernetes-host

DescriptionUpdate the host of a Kubernetes-CoreOS Cluster.
Command format

update-kubernetes-host -p <JSON_FILE_PATH>

The path to the JSON file that defines the Kubernetes-CoreOS host needs to be defined as the <JSON_FILE_PATH> value.


REST API response

HTTP status code

200, 404, 500

See the descriptions of the HTTP status codes here.

Location header URL https://<STRATOS_HOST>:<STRATOS_HTTPS_PORT>/api/kubernetes/update/host/<MINION_ID>
  • No labels