91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用kubeadm管理證書?

發布時間:2020-06-20 16:31:58 來源:網絡 閱讀:8866 作者:Flywithmeto 欄目:云計算

kubeadm管理證書

在管理證書之前,你需要了解kubernetes如何使用PKI證書的相關知識:官方文檔

檢查證書到期時間

check-expiration 可用于檢查證書過期時間:

kubeadm alpha certs check-expiration

輸出如下內容;

CERTIFICATE                EXPIRES                  RESIDUAL TIME   EXTERNALLY MANAGED
admin.conf                 Oct 06, 2020 03:56 UTC   364d            no      
apiserver                  Oct 06, 2020 10:41 UTC   364d            no      
apiserver-etcd-client      Oct 06, 2020 03:55 UTC   364d            no      
apiserver-kubelet-client   Oct 06, 2020 03:55 UTC   364d            no      
controller-manager.conf    Oct 06, 2020 03:56 UTC   364d            no      
etcd-healthcheck-client    Oct 02, 2020 12:14 UTC   361d            no      
etcd-peer                  Oct 02, 2020 12:14 UTC   361d            no      
etcd-server                Oct 02, 2020 12:14 UTC   361d            no      
front-proxy-client         Oct 06, 2020 03:55 UTC   364d            no      
scheduler.conf             Oct 06, 2020 03:56 UTC   364d            no     

該命令顯示了 所有證書的到期/剩余時間,包括在etc/kubernetes/pki目錄下的客戶端證書及由kubeadm嵌入到KUBECONFIG文件中的客戶端證書(admin.conf,controller-manager.conf和scheduler.conf)。

注意:

  1. kubelet.conf未包含在上面的列表中,因為kubeadm將已將其配置為自動更新。
  2. kubeadm無法管理由外部CA簽名的證書。

自動續訂證書

自動續訂指的是,在用kubeadm升級控制平面時 自動更新所有證書。

如果對證書續約沒有要求,并定期升級kubernetes版本,每次升級間隔時間少于1年,最佳做法是經常升級集群以確保安全。

如果不想在升級集群時續約證書,則給 kubeadm upgrade apply 或 kubeadm upgrade node 傳遞參數:--certificate-renewal=false

手動續訂證書

使用 kubeadm alpha certs renew 命令 可以隨時手動續訂證書,該命令使用存儲在/etc/kubernetes/pki中的 CA (or front-proxy-CA)證書和密鑰來更新證書。

如果是HA集群,則在所有控制平面執行

kubeadm alpha certs 命令詳解:

Available Commands:
  certificate-key  生成證書和key
  check-expiration  檢測證書過期時間
  renew            續訂Kubernetes集群的證書

用的最多的續訂證書的 renew子命令,現在來看下該命令幫助:

root@k8s-master:~# kubeadm  alpha certs renew -h
This command is not meant to be run on its own. See list of available subcommands.

Usage:
  kubeadm alpha certs renew [flags]
  kubeadm alpha certs renew [command]

Available Commands:
  admin.conf               Renew the certificate embedded in the kubeconfig file for the admin to use and for kubeadm itself
  all                      Renew all available certificates
  apiserver                Renew the certificate for serving the Kubernetes API
  apiserver-etcd-client    Renew the certificate the apiserver uses to access etcd
  apiserver-kubelet-client Renew the certificate for the API server to connect to kubelet
  controller-manager.conf  Renew the certificate embedded in the kubeconfig file for the controller manager to use
  etcd-healthcheck-client  Renew the certificate for liveness probes to healtcheck etcd
  etcd-peer                Renew the certificate for etcd nodes to communicate with each other
  etcd-server              Renew the certificate for serving etcd
  front-proxy-client       Renew the certificate for the front proxy client
  scheduler.conf           Renew the certificate embedded in the kubeconfig file for the scheduler manager to use

Flags:
  -h, --help   help for renew

Global Flags:
      --log-file string          If non-empty, use this log file
      --log-file-max-size uint   Defines the maximum size a log file can grow to. Unit is megabytes. If the value is 0, the maximum file size is unlimited. (default 1800)
      --rootfs string            [EXPERIMENTAL] The path to the 'real' host root filesystem.
      --skip-headers             If true, avoid header prefixes in the log messages
      --skip-log-headers         If true, avoid headers when opening log files
  -v, --v Level                  number for the log level verbosity

如上所知,指定某個證書就能續訂該證書,指定 all
則續訂所有證書。

命令執行后,注意:

  1. 無論證書的到期時間如何,都會無條件地續訂一年。
  2. 證書的SAN等信息基于原證書,無需再次提供。
  3. renew執行后,為使更改生效,需要重啟控制平面組件。

kubeadm alpha certs命令僅支持v1.15及其以上的版本。

示例: 手動續訂apiserver的證書-apiserver.crt

從上面檢測中知道,當前 apiserver.crt 到期時間是 Oct 06, 2020 03:55 UTC ,剩余364d。

1. 執行renew更新:

root@k8s-master:~# kubeadm  alpha certs renew apiserver
certificate for serving the Kubernetes API renewed

2. 重啟控制平面:

重啟kubelet會自動重新創建核心組件

systemctl restart kubelet

3. 驗證:

root@k8s-master:~# kubeadm alpha certs check-expiration
CERTIFICATE                EXPIRES                  RESIDUAL TIME   EXTERNALLY MANAGED
apiserver                  Oct 06, 2020 10:41 UTC   364d            no  

apiserver證書到期時間發生了變化, 不過不是順延一年, 而是 從你 執行renew成功的時間開始續簽一年。

如果要將所有證書續簽一年,則執行:

kubeadm  alpha certs renew all

使用外部CA續訂證書

通過外部CA簽發證書,需要kubeadm 生成一個CSR提交給CA。

1. 生成CSR和私鑰:

kubeadm alpha certs renew apiserver --csr-only  --csr-dir /tmp/apiserver.csr
  • --csr-only:僅生成CSR。
  • --csr-dir:生成的CSR和私鑰文件保存在哪里,默認保存在/etc/kubernetes/pki

2. 查看CSR和私鑰:

命令輸出結果中提供了CSR和私鑰。

root@k8s-master:~# ls /tmp/apiserver.csr/
apiserver.csr  apiserver.key

3. 使用該私鑰到CA上請求簽發證書。

將頒發的證書及私鑰復制到PKI目錄/etc/kubernetes/pki中。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

洪雅县| 锡林浩特市| 武乡县| 西乌| 阿鲁科尔沁旗| 闽清县| 芮城县| 蓝田县| 连山| 军事| 江华| 平塘县| 团风县| 山东| 黄山市| 遵义市| 静安区| 宜宾县| 玉林市| 石河子市| 苏州市| 德州市| 喜德县| 阿瓦提县| 清水河县| 南京市| 沁水县| 盐池县| 健康| 成都市| 浮梁县| 武清区| 瓮安县| 中山市| 福建省| 锦州市| 甘肃省| 资中县| 浙江省| 垫江县| 英超|