首頁 > 軟體

python呼叫kubernetesAPI簡單使用方法

2022-05-19 19:01:04

前言:

K8s也提供API介面,提供這個介面的是管理節點的apiserver元件,apiserver服務負責提供HTTP API,以便使用者、其他元件相互通訊。使用者端庫

安裝

pip install kubernetes -i https://pypi.douban.com/simple

k8s認證方式:

  • HTTPS 證書認證:基於CA證書籤名的數位憑證認證
  • HTTP Token認證:通過一個Token來識別使用者

HTTPS證書認證(kubeconfig)

import os
from kubernetes import client, config
config.load_kube_config(file_path)  # 指定kubeconfig組態檔
apps_api = client.AppsV1Api()  # 資源介面類範例化

for dp in apps_api.list_deployment_for_all_namespaces().items:
    print(dp)

HTTP Token認證(ServiceAccount)

from kubernetes import client, config
configuration = client.Configuration()
configuration.host = "https://192.168.3.201:16443"  # APISERVER地址
configuration.ssl_ca_cert="ca.crt"  # CA證書 /etc/kubernetes/pki/ca.crt
configuration.verify_ssl = True   # 啟用證書驗證
configuration.api_key = {"authorization": "Bearer " + token}  # 指定Token字串
client.Configuration.set_default(configuration)
apps_api = client.AppsV1Api() 

這2個認證,2選1

獲取Token字串:建立service account並繫結預設cluster-admin管理員叢集角色:

建立使用者:

$ kubectl create serviceaccount dashboard-admin -n kube-system

使用者授權:

$ kubectl create clusterrolebinding dashboard-admin --clusterrole=cluster-admin --serviceaccount=kube-system:dashboard-admin

獲取使用者Token:

$ kubectl describe secrets -n kube-system $(kubectl -n kube-system get secret | awk ‘/dashboard-admin/{print $1}’)

其他常用資源介面類範例化:

core_api = client.CoreV1Api()  # namespace,pod,service,pv,pvc
apps_api = client.AppsV1Api()  # deployment
networking_api = client.NetworkingV1beta1Api()  # ingress
storage_api = client.StorageV1Api()  # storage_class

舉個例子

Deployment操作:

# 先得有上面的認證,下面的程式碼才行
# 建立
namespace = "default"
name = "api-test"
replicas = 3
labels = {'nginx':'true'}  # 不區分資料型別,都要加引號
image = "nginx"
body = client.V1Deployment(
            api_version="apps/v1",
            kind="Deployment",
            metadata=client.V1ObjectMeta(name=name),
            spec=client.V1DeploymentSpec(
                replicas=replicas,
                selector={'matchLabels': labels},
                template=client.V1PodTemplateSpec(
                    metadata=client.V1ObjectMeta(labels=labels),
                    spec=client.V1PodSpec(
                        containers=[client.V1Container(
                            name="web",
                            image=image
                        )]
                    )
                ),
            )
        )
try:
    apps_api.create_namespaced_deployment(namespace=namespace, body=body)
except Exception as e:
    status = getattr(e, "status")
    if status == 400:
        print(e)
        print("格式錯誤")
    elif status == 403:
        print("沒許可權")
# 刪除
name = "api-test"
apps_api.delete_namespaced_deployment(namespace=namespace, name=name)

但其實這個API挺繞的 ,一個建立deployment的,這裡N多的類的物件。

到此這篇關於python呼叫kubernetesAPI簡單使用方法的文章就介紹到這了,更多相關python呼叫kubernetesAPI 內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com