• etcdctl 恢复k8s后报错


    1. Error from server (Forbidden): replicationcontrollers is forbidden: User "system:node:192.168.1.107" cannot list resource "replicationcontrollers" in API group "" in the namespace "harbor"
    2. Error from server (Forbidden): daemonsets.apps is forbidden: User "system:node:192.168.1.107" cannot list resource "daemonsets" in API group "apps" in the namespace "harbor"
    3. Error from server (Forbidden): deployments.apps is forbidden: User "system:node:192.168.1.107" cannot list resource "deployments" in API group "apps" in the namespace "harbor"
    4. Error from server (Forbidden): replicasets.apps is forbidden: User "system:node:192.168.1.107" cannot list resource "replicasets" in API group "apps" in the namespace "harbor"
    5. Error from server (Forbidden): statefulsets.apps is forbidden: User "system:node:192.168.1.107" cannot list resource "statefulsets" in API group "apps" in the namespace "harbor"
    6. Error from server (Forbidden): horizontalpodautoscalers.autoscaling is forbidden: User "system:node:192.168.1.107" cannot list resource "horizontalpodautoscalers" in API group "autoscaling" in the namespace "harbor"
    7. Error from server (Forbidden): cronjobs.batch is forbidden: User "system:node:192.168.1.107" cannot list resource "cronjobs" in API group "batch" in the namespace "harbor"
    8. Error from server (Forbidden): jobs.batch is forbidden: User "system:node:192.168.1.107" cannot list resource "jobs" in API group "batch" in the namespace "harbor"

    提示该master节点无权限,应该是在恢复的时候操作不当

    在备用master节点上加上

    kubectl create clusterrolebinding system:node:192.168.1.107   --clusterrole=cluster-admin   --user=system:node:192.168.1.107
    

  • 相关阅读:
    设计模式——原型模式
    selenium学习
    mysql表引擎批量转换--mysql_convert_table_format
    2022关键之年,国产奶粉「争霸之秋」
    ABC344 A-E题解
    【系统设计系列】异步和网络通信
    电动汽车租赁平台【EV Mobility】申请875万美元纳斯达克IPO上市
    Guitar Pro8吉他打谱下载自学制作教程
    数据库批处理
    不可重复读和幻读区别
  • 原文地址:https://blog.csdn.net/tankpanv/article/details/132600299