全部產品
Search
文件中心

Container Service for Kubernetes:使用Kubernetes API

更新時間:Jun 08, 2024

Kubernetes API通過HTTP提供基於資源(RESTful)的編程介面,支援通過標準HTTP請求(POST、PUT、PATCH、DELETE、GET)進行查詢、建立、更新和刪除各類叢集資源。您可以通過curl命令或其他編程方式使用Kubernetes API。本文通過樣本介紹如何通過curl命令管理Pod和Deployment。

擷取叢集訪問憑證KubeConfig

  1. 登入Container Service管理主控台

  2. 單擊前往RAM進行授權進入雲資源訪問授權頁面,然後單擊同意授權

    完成以上授權後,重新整理控制台即可使用Container ServiceACK。

  3. 在控制台左側導覽列,單擊叢集

  4. 叢集列表頁面,單擊目的地組群名稱或者目的地組群右側操作列下的詳情

  5. 單擊串連資訊頁簽,查看叢集訪問憑證(KubeConfig),將KubeConfig檔案儲存到本地。

  6. 使用以下命令從KubeConfig檔案中提取CA、Key和APIServer資訊。

    cat  ./kubeconfig |grep client-certificate-data | awk -F ' ' '{print $2}' |base64 -d > ./client-cert.pem
    cat  ./kubeconfig |grep client-key-data | awk -F ' ' '{print $2}' |base64 -d > ./client-key.pem
    APISERVER=`cat  ./kubeconfig |grep server | awk -F ' ' '{print $2}'`

使用curl命令操作Kubernetes API

執行以下命令查看當前叢集中所有Namespaces。

curl --cert ./client-cert.pem --key ./client-key.pem -k $APISERVER/api/v1/namespaces

通過curl命令管理Pod和Deployment常見樣本操作如下。

Pod常見操作

執行以下命令查看default命名空間下的所有Pods。

curl --cert ./client-cert.pem --key ./client-key.pem -k $APISERVER/api/v1/namespaces/default/pods

執行以下命令建立Pod(JSON格式)。

cat nginx-pod.json
{
    "apiVersion":"v1",
    "kind":"Pod",
    "metadata":{
        "name":"nginx",
        "namespace": "default"
    },
    "spec":{
        "containers":[
            {
                "name":"nginx",
                "image":"nginx:alpine",
                "ports":[
                    {
                        "containerPort": 80
                    }
                ]
            }
        ]
    }
}

curl --cert ./client-cert.pem --key ./client-key.pem -k $APISERVER/api/v1/namespaces/default/pods -X POST --header 'content-type: application/json' -d@nginx-pod.json

執行以下命令建立Pod(YAML格式)。

cat nginx-pod.yaml
apiVersion: v1
kind: Pod
metadata:
  name: nginx
  namespace: default
spec:
  containers:
  - name: nginx
    image: nginx:alpine
    ports:
    - containerPort: 80

curl --cert ./client-cert.pem --key ./client-key.pem -k $APISERVER/api/v1/namespaces/default/pods -X POST --header 'content-type: application/yaml' --data-binary @nginx-pod.yaml

執行以下命令查詢Pod狀態。

curl --cert ./client-cert.pem --key ./client-key.pem -k $APISERVER/api/v1/namespaces/default/pods/nginx

執行以下命令查詢Pod日誌。

curl --cert ./client-cert.pem --key ./client-key.pem -k $APISERVER/api/v1/namespaces/default/pods/nginx/log

執行以下命令查詢Pod的metrics資料(通過metric-server API)。

curl --cert ./client-cert.pem --key ./client-key.pem -k $APISERVER/apis/metrics.k8s.io/v1beta1/namespaces/default/pods/nginx

執行以下命令刪除Pod。

curl --cert ./client-cert.pem --key ./client-key.pem -k $APISERVER/api/v1/namespaces/default/pods/nginx -X DELETE

Deployment常見操作

建立Deployment樣本YAML檔案如下。

cat nginx-deploy.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
  name: nginx-deploy
  labels:
    app: nginx
spec:
  replicas: 2
  selector:
    matchLabels:
      app: nginx
  template:
    metadata:
      labels:
        app: nginx
    spec:
      containers:
      - name: nginx
        image:  nginx:alpine
        ports:
        - containerPort: 80
        resources:
          requests:
            cpu: "2"
            memory: "4Gi"

curl --cert ./client-cert.pem --key ./client-key.pem -k $APISERVER/apis/apps/v1/namespaces/default/deployments -X POST --header 'content-type: application/yaml' --data-binary @nginx-deploy.yaml

執行以下命令查看Deployment。

curl --cert ./client-cert.pem --key ./client-key.pem -k $APISERVER/apis/apps/v1/namespaces/default/deployments

執行以下命令更新Deployment(修改replicas副本數量)。

curl --cert ./client-cert.pem --key ./client-key.pem -k $APISERVER/apis/apps/v1/namespaces/default/deployments/nginx-deploy -X PATCH -H 'Content-Type: application/strategic-merge-patch+json' -d '{"spec": {"replicas": 4}}'

執行以下命令更新Deployment(修改容器鏡像)。

curl --cert ./client-cert.pem --key ./client-key.pem -k $APISERVER/apis/apps/v1/namespaces/default/deployments/nginx-deploy -X PATCH -H 'Content-Type: application/strategic-merge-patch+json' -d '{"spec": {"template": {"spec": {"containers": [{"name": "nginx","image": "nginx:1.7.9"}]}}}}'