只要眼睛没瞎,就会知道徐令宜的良苦用心。
2025年01月04日,二是旅行者汽车持有的浙商银行13.47亿股中的7.09亿股股票归太平人寿所有、6.38亿股股票的所有权归山东国信所有。
《晚秋》高清在线观看-晚秋免费完整版-星辰影院《晚秋电影未删减完整版》罢厂手机在线播放-印尼传奇片...
本月肉类公司全部品牌的滨狈颁指数均值为423.9说明该行业领域大多数品牌的品牌建设正在走向成熟受重视程度越来越高品牌声量和社会关注程度都呈现上升态势本月全部品牌的滨狈颁指数的偏态系数为0.343数据基本呈现正态分布特征大部分品牌的滨狈颁指数分值集中在268.23和579.57之间;数据相对分撒表现为峰度系数低为-0.489
高速公路上,限速牌、出口指示等信息如同航海图中的浮标,指引你安全前行。可别做那个只会盯着前方,对周围变化视而不见的“直行侠”。学会用余光扫视路边的指示牌,提前预判,避免错过出口的尴尬。这不仅考验你的观察能力,也是对驾驶灵活性的锻炼。kubernetes(k8s)集群安装部署手册原创2023-09-09 17:24·运维生活日志目录一 集群部署过程 11 版本以及规划信息 12 集群部署 13异常节点处理: 13一 集群部署过程1 版本以及规划信息1.1 版本信息名称 版本号内核 3.10.0-1160.el7.x86_64系统 CentOS Linux release 7.9.2009 (Core)docker 20.10.9kubeadm 1.22.0kubelet 1.22.0kubectl 1.22.01.2 服务器信息规划IP 主机名192.168.10.128 master192.168.10.129 node-01192.168.10.130 node-022 集群部署说明: 第一~第八步 三个节点均操作;第九十步master节点操作,第十一步骤node节点操作2.1 关闭防火墙操作systemctl stop firewalld;systemctl disable firewalld2.2 关闭selinuxsetenforce 0 #临时关闭sed -i '/SELINUX/s/enforcing/disabled/g' /etc/sysconfig/selinux #永久关闭2.3 关闭swapswapoff -a #临时关闭sed -ri 's/.*swap.*/#&/' /etc/fstab #永久关闭2.4 修改hosts文件cat >> /etc/hosts < /etc/sysctl.d/k8s.conf << EOFnet.bridge.bridge-nf-call-ip6tables = 1net.bridge.bridge-nf-call-iptables = 1EOFsysctl --system2.6 安装dockerwget https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo -O /etc/yum.repos.d/docker-ce.repoyum list docker-ce --showduplicates | sort -r #查看docker相关版本yum install docker-ce-20.10.9 docker-ce-cli-20.10.9 #安装指定的版本systemctl start dockersystemctl enable dockerdocker info|grep cgroup此处可能存在的问题 docker版本和kubelete存在兼容性问题解决方案一{"exec-opts": ["native.cgroupdriver=systemd"]}解决方案二# docker.servicevi /usr/lib/systemd/system/docker.service# 添加ExecStart=/usr/bin/dockerd --exec-opt native.cgroupdriver=systemd2.7 添加阿里云yum软件源cat > /etc/yum.repos.d/kubernetes.repo << EOF[kubernetes]name=Kubernetesbaseurl=https://mirrors.aliyun.com/kubernetes/yum/repos/kubernetes-el7-x86_64enabled=1gpgcheck=0repo_gpgcheck=1gpgkey=https://mirrors.aliyun.com/kubernetes/yum/doc/yum-key.gpghttps://mirrors.aliyun.com/kubernetes/yum/doc/rpm-package-key.gpgEOF2.8 安装kubeadm、kubelet、kubectlyum install -y kubelet-1.18.0 kubectl-1.18.0 kubeadm-1.18.0systemctl enable kubelet2.9 初始化master节点kubeadm init \--image-repository=registry.cn-hangzhou.aliyuncs.com/google_containers \--apiserver-advertise-address=192.168.10.128 \--kubernetes-version=v1.18.0 \--service-cidr=10.96.0.0/12 \--pod-network-cidr=10.244.0.0/16 \--v=6mkdir -p $HOME/.kubesudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/config# 第1条命令:表示创建隐藏文件夹.kube# 第2条命令:表示复制文件admin.conf到该文件夹下# 第3条命令:表示设置文件的所属用户、用户组[root@master ~]# kubeadm init \> --image-repository=registry.cn-hangzhou.aliyuncs.com/google_containers \> --apiserver-advertise-address=192.168.10.128 \> --kubernetes-version=v1.18.0 \> --service-cidr=10.96.0.0/12 \> --pod-network-cidr=10.244.0.0/16 \> --v=6I0730 00:35:34.465349 26797 initconfiguration.go:103] detected and using CRI socket: /var/run/dockershim.sockW0730 00:35:34.467144 26797 configset.go:202] WARNING: kubeadm cannot validate component configs for API groups [kubelet.config.k8s.io kubeproxy.config.k8s.io][init] Using Kubernetes version: v1.18.0[preflight] Running pre-flight checksI0730 00:35:34.468752 26797 checks.go:577] validating Kubernetes and kubeadm versionI0730 00:35:34.468817 26797 checks.go:166] validating if the firewall is enabled and activeI0730 00:35:34.495833 26797 checks.go:201] validating availability of port 6443I0730 00:35:34.498186 26797 checks.go:201] validating availability of port 10259I0730 00:35:34.498364 26797 checks.go:201] validating availability of port 10257I0730 00:35:34.498438 26797 checks.go:286] validating the existence of file /etc/kubernetes/manifests/kube-apiserver.yamlI0730 00:35:34.498478 26797 checks.go:286] validating the existence of file /etc/kubernetes/manifests/kube-controller-manager.yamlI0730 00:35:34.498495 26797 checks.go:286] validating the existence of file /etc/kubernetes/manifests/kube-scheduler.yamlI0730 00:35:34.498511 26797 checks.go:286] validating the existence of file /etc/kubernetes/manifests/etcd.yamlI0730 00:35:34.498542 26797 checks.go:432] validating if the connectivity type is via proxy or directI0730 00:35:34.498639 26797 checks.go:471] validating http connectivity to first IP address in the CIDRI0730 00:35:34.498692 26797 checks.go:471] validating http connectivity to first IP address in the CIDRI0730 00:35:34.498729 26797 checks.go:102] validating the container runtimeI0730 00:35:34.749587 26797 checks.go:128] validating if the service is enabled and active[WARNING IsDockerSystemdCheck]: detected "cgroupfs" as the Docker cgroup driver. The recommended driver is "systemd". Please follow the guide at https://kubernetes.io/docs/setup/cri/I0730 00:35:35.004904 26797 checks.go:335] validating the contents of file /proc/sys/net/bridge/bridge-nf-call-iptablesI0730 00:35:35.005062 26797 checks.go:335] validating the contents of file /proc/sys/net/ipv4/ip_forwardI0730 00:35:35.005204 26797 checks.go:649] validating whether swap is enabled or notI0730 00:35:35.005266 26797 checks.go:376] validating the presence of executable conntrackI0730 00:35:35.005761 26797 checks.go:376] validating the presence of executable ipI0730 00:35:35.006005 26797 checks.go:376] validating the presence of executable iptablesI0730 00:35:35.006037 26797 checks.go:376] validating the presence of executable mountI0730 00:35:35.006272 26797 checks.go:376] validating the presence of executable nsenterI0730 00:35:35.006587 26797 checks.go:376] validating the presence of executable ebtablesI0730 00:35:35.006621 26797 checks.go:376] validating the presence of executable ethtoolI0730 00:35:35.006642 26797 checks.go:376] validating the presence of executable socatI0730 00:35:35.006666 26797 checks.go:376] validating the presence of executable tcI0730 00:35:35.006684 26797 checks.go:376] validating the presence of executable touchI0730 00:35:35.006709 26797 checks.go:520] running all checks[WARNING SystemVerification]: this Docker version is not on the list of validated versions: 20.10.9. Latest validated version: 19.03I0730 00:35:35.243646 26797 checks.go:406] checking whether the given node name is reachable using net.LookupHostI0730 00:35:35.244443 26797 checks.go:618] validating kubelet versionI0730 00:35:35.388021 26797 checks.go:128] validating if the service is enabled and activeI0730 00:35:35.407445 26797 checks.go:201] validating availability of port 10250I0730 00:35:35.407861 26797 checks.go:201] validating availability of port 2379I0730 00:35:35.408055 26797 checks.go:201] validating availability of port 2380I0730 00:35:35.408214 26797 checks.go:249] validating the existence and emptiness of directory /var/lib/etcd[preflight] Pulling images required for setting up a Kubernetes cluster[preflight] This might take a minute or two, depending on the speed of your internet connection[preflight] You can also perform this action in beforehand using 'kubeadm config images pull'I0730 00:35:35.508189 26797 checks.go:844] pulling registry.cn-hangzhou.aliyuncs.com/google_containers/kube-apiserver:v1.18.0I0730 00:36:37.874415 26797 checks.go:844] pulling registry.cn-hangzhou.aliyuncs.com/google_containers/kube-controller-manager:v1.18.0I0730 00:37:22.204601 26797 checks.go:844] pulling registry.cn-hangzhou.aliyuncs.com/google_containers/kube-scheduler:v1.18.0I0730 00:37:54.572787 26797 checks.go:844] pulling registry.cn-hangzhou.aliyuncs.com/google_containers/kube-proxy:v1.18.0I0730 00:38:42.961883 26797 checks.go:844] pulling registry.cn-hangzhou.aliyuncs.com/google_containers/pause:3.2I0730 00:38:57.533578 26797 checks.go:844] pulling registry.cn-hangzhou.aliyuncs.com/google_containers/etcd:3.4.3-0I0730 00:40:27.427614 26797 checks.go:844] pulling registry.cn-hangzhou.aliyuncs.com/google_containers/coredns:1.6.7I0730 00:40:49.102866 26797 kubelet.go:64] Stopping the kubelet[kubelet-start] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env"[kubelet-start] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml"[kubelet-start] Starting the kubelet[certs] Using certificateDir folder "/etc/kubernetes/pki"I0730 00:40:49.560999 26797 certs.go:103] creating a new certificate authority for ca[certs] Generating "ca" certificate and key[certs] Generating "apiserver" certificate and key[certs] apiserver serving cert is signed for DNS names [master kubernetes kubernetes.default kubernetes.default.svc kubernetes.default.svc.cluster.local] and IPs [10.96.0.1 192.168.10.128][certs] Generating "apiserver-kubelet-client" certificate and keyI0730 00:40:51.171593 26797 certs.go:103] creating a new certificate authority for front-proxy-ca[certs] Generating "front-proxy-ca" certificate and key[certs] Generating "front-proxy-client" certificate and keyI0730 00:40:52.331002 26797 certs.go:103] creating a new certificate authority for etcd-ca[certs] Generating "etcd/ca" certificate and key[certs] Generating "etcd/server" certificate and key[certs] etcd/server serving cert is signed for DNS names [master localhost] and IPs [192.168.10.128 127.0.0.1 ::1][certs] Generating "etcd/peer" certificate and key[certs] etcd/peer serving cert is signed for DNS names [master localhost] and IPs [192.168.10.128 127.0.0.1 ::1][certs] Generating "etcd/healthcheck-client" certificate and key[certs] Generating "apiserver-etcd-client" certificate and keyI0730 00:40:54.818549 26797 certs.go:69] creating new public/private key files for signing service account users[certs] Generating "sa" key and public key[kubeconfig] Using kubeconfig folder "/etc/kubernetes"I0730 00:40:55.968722 26797 kubeconfig.go:79] creating kubeconfig file for admin.conf[kubeconfig] Writing "admin.conf" kubeconfig fileI0730 00:40:56.245786 26797 kubeconfig.go:79] creating kubeconfig file for kubelet.conf[kubeconfig] Writing "kubelet.conf" kubeconfig fileI0730 00:40:56.621396 26797 kubeconfig.go:79] creating kubeconfig file for controller-manager.conf[kubeconfig] Writing "controller-manager.conf" kubeconfig fileI0730 00:40:56.818129 26797 kubeconfig.go:79] creating kubeconfig file for scheduler.conf[kubeconfig] Writing "scheduler.conf" kubeconfig file[control-plane] Using manifest folder "/etc/kubernetes/manifests"[control-plane] Creating static Pod manifest for "kube-apiserver"I0730 00:40:57.162267 26797 manifests.go:91] [control-plane] getting StaticPodSpecsI0730 00:40:57.163474 26797 manifests.go:104] [control-plane] adding volume "ca-certs" for component "kube-apiserver"I0730 00:40:57.163497 26797 manifests.go:104] [control-plane] adding volume "etc-pki" for component "kube-apiserver"I0730 00:40:57.163507 26797 manifests.go:104] [control-plane] adding volume "k8s-certs" for component "kube-apiserver"I0730 00:40:57.176186 26797 manifests.go:121] [control-plane] wrote static Pod manifest for component "kube-apiserver" to "/etc/kubernetes/manifests/kube-apiserver.yaml"[control-plane] Creating static Pod manifest for "kube-controller-manager"I0730 00:40:57.176232 26797 manifests.go:91] [control-plane] getting StaticPodSpecsW0730 00:40:57.176346 26797 manifests.go:225] the default kube-apiserver authorization-mode is "Node,RBAC"; using "Node,RBAC"I0730 00:40:57.176680 26797 manifests.go:104] [control-plane] adding volume "ca-certs" for component "kube-controller-manager"I0730 00:40:57.176688 26797 manifests.go:104] [control-plane] adding volume "etc-pki" for component "kube-controller-manager"I0730 00:40:57.176693 26797 manifests.go:104] [control-plane] adding volume "flexvolume-dir" for component "kube-controller-manager"I0730 00:40:57.176697 26797 manifests.go:104] [control-plane] adding volume "k8s-certs" for component "kube-controller-manager"I0730 00:40:57.176702 26797 manifests.go:104] [control-plane] adding volume "kubeconfig" for component "kube-controller-manager"I0730 00:40:57.177947 26797 manifests.go:121] [control-plane] wrote static Pod manifest for component "kube-controller-manager" to "/etc/kubernetes/manifests/kube-controller-manager.yaml"[control-plane] Creating static Pod manifest for "kube-scheduler"I0730 00:40:57.177980 26797 manifests.go:91] [control-plane] getting StaticPodSpecsW0730 00:40:57.178062 26797 manifests.go:225] the default kube-apiserver authorization-mode is "Node,RBAC"; using "Node,RBAC"I0730 00:40:57.178409 26797 manifests.go:104] [control-plane] adding volume "kubeconfig" for component "kube-scheduler"I0730 00:40:57.179219 26797 manifests.go:121] [control-plane] wrote static Pod manifest for component "kube-scheduler" to "/etc/kubernetes/manifests/kube-scheduler.yaml"[etcd] Creating static Pod manifest for local etcd in "/etc/kubernetes/manifests"I0730 00:40:57.180242 26797 local.go:72] [etcd] wrote Static Pod manifest for a local etcd member to "/etc/kubernetes/manifests/etcd.yaml"I0730 00:40:57.180284 26797 waitcontrolplane.go:87] [wait-control-plane] Waiting for the API server to be healthyI0730 00:40:57.181798 26797 loader.go:375] Config loaded from file: /etc/kubernetes/admin.conf[wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods from directory "/etc/kubernetes/manifests". This can take up to 4m0sI0730 00:40:57.185824 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s in 0 millisecondsI0730 00:40:57.687883 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s in 0 millisecondsI0730 00:40:58.187689 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s in 0 millisecondsI0730 00:40:58.687505 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s in 0 millisecondsI0730 00:40:59.187708 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s in 0 millisecondsI0730 00:40:59.687437 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s in 0 millisecondsI0730 00:41:00.187753 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s in 0 millisecondsI0730 00:41:00.687830 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s in 0 millisecondsI0730 00:41:01.187695 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s in 0 millisecondsI0730 00:41:01.686916 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s in 0 millisecondsI0730 00:41:02.188601 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s in 0 millisecondsI0730 00:41:02.686665 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s in 0 millisecondsI0730 00:41:03.187222 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s in 0 millisecondsI0730 00:41:03.688352 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s in 0 millisecondsI0730 00:41:04.187550 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s in 1 millisecondsI0730 00:41:04.691266 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s in 1 millisecondsI0730 00:41:14.130375 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s 500 Internal Server Error in 8944 millisecondsI0730 00:41:14.202729 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s 500 Internal Server Error in 16 millisecondsI0730 00:41:14.689598 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s 500 Internal Server Error in 3 millisecondsI0730 00:41:15.196163 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s 500 Internal Server Error in 9 millisecondsI0730 00:41:15.689662 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s 500 Internal Server Error in 3 millisecondsI0730 00:41:16.190375 26797 round_trippers.go:443] GET https://192.168.10.128:6443/healthz?timeout=10s 200 OK in 3 milliseconds[apiclient] All control plane components are healthy after 19.005906 secondsI0730 00:41:16.190562 26797 uploadconfig.go:108] [upload-config] Uploading the kubeadm ClusterConfiguration to a ConfigMap[upload-config] Storing the configuration used in ConfigMap "kubeadm-config" in the "kube-system" NamespaceI0730 00:41:16.202115 26797 round_trippers.go:443] POST https://192.168.10.128:6443/api/v1/namespaces/kube-system/configmaps?timeout=10s 201 Created in 6 millisecondsI0730 00:41:16.210907 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/rbac.authorization.k8s.io/v1/namespaces/kube-system/roles?timeout=10s 201 Created in 7 millisecondsI0730 00:41:16.219527 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/rbac.authorization.k8s.io/v1/namespaces/kube-system/rolebindings?timeout=10s 201 Created in 6 millisecondsI0730 00:41:16.220662 26797 uploadconfig.go:122] [upload-config] Uploading the kubelet component config to a ConfigMap[kubelet] Creating a ConfigMap "kubelet-config-1.18" in namespace kube-system with the configuration for the kubelets in the clusterI0730 00:41:16.227796 26797 round_trippers.go:443] POST https://192.168.10.128:6443/api/v1/namespaces/kube-system/configmaps?timeout=10s 201 Created in 6 millisecondsI0730 00:41:16.234309 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/rbac.authorization.k8s.io/v1/namespaces/kube-system/roles?timeout=10s 201 Created in 6 millisecondsI0730 00:41:16.241883 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/rbac.authorization.k8s.io/v1/namespaces/kube-system/rolebindings?timeout=10s 201 Created in 7 millisecondsI0730 00:41:16.242124 26797 uploadconfig.go:127] [upload-config] Preserving the CRISocket information for the control-plane nodeI0730 00:41:16.242159 26797 patchnode.go:30] [patchnode] Uploading the CRI Socket information "/var/run/dockershim.sock" to the Node API object "master" as an annotationI0730 00:41:16.751565 26797 round_trippers.go:443] GET https://192.168.10.128:6443/api/v1/nodes/master?timeout=10s 200 OK in 4 millisecondsI0730 00:41:16.767568 26797 round_trippers.go:443] PATCH https://192.168.10.128:6443/api/v1/nodes/master?timeout=10s 200 OK in 11 milliseconds[upload-certs] Skipping phase. Please see --upload-certs[mark-control-plane] Marking the node master as control-plane by adding the label "node-role.kubernetes.io/master=''"[mark-control-plane] Marking the node master as control-plane by adding the taints [node-role.kubernetes.io/master:NoSchedule]I0730 00:41:17.273970 26797 round_trippers.go:443] GET https://192.168.10.128:6443/api/v1/nodes/master?timeout=10s 200 OK in 4 millisecondsI0730 00:41:17.285850 26797 round_trippers.go:443] PATCH https://192.168.10.128:6443/api/v1/nodes/master?timeout=10s 200 OK in 9 milliseconds[bootstrap-token] Using token: re6mt8.bwol9dej5nsqubxt[bootstrap-token] Configuring bootstrap tokens, cluster-info ConfigMap, RBAC RolesI0730 00:41:17.291184 26797 round_trippers.go:443] GET https://192.168.10.128:6443/api/v1/namespaces/kube-system/secrets/bootstrap-token-re6mt8?timeout=10s 404 Not Found in 4 millisecondsI0730 00:41:17.299410 26797 round_trippers.go:443] POST https://192.168.10.128:6443/api/v1/namespaces/kube-system/secrets?timeout=10s 201 Created in 6 milliseconds[bootstrap-token] configured RBAC rules to allow Node Bootstrap tokens to get nodesI0730 00:41:17.309247 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/rbac.authorization.k8s.io/v1/clusterroles?timeout=10s 201 Created in 8 millisecondsI0730 00:41:17.318135 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/rbac.authorization.k8s.io/v1/clusterrolebindings?timeout=10s 201 Created in 7 milliseconds[bootstrap-token] configured RBAC rules to allow Node Bootstrap tokens to post CSRs in order for nodes to get long term certificate credentialsI0730 00:41:17.325642 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/rbac.authorization.k8s.io/v1/clusterrolebindings?timeout=10s 201 Created in 6 milliseconds[bootstrap-token] configured RBAC rules to allow the csrapprover controller automatically approve CSRs from a Node Bootstrap TokenI0730 00:41:17.332197 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/rbac.authorization.k8s.io/v1/clusterrolebindings?timeout=10s 201 Created in 6 milliseconds[bootstrap-token] configured RBAC rules to allow certificate rotation for all node client certificates in the clusterI0730 00:41:17.338051 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/rbac.authorization.k8s.io/v1/clusterrolebindings?timeout=10s 201 Created in 5 milliseconds[bootstrap-token] Creating the "cluster-info" ConfigMap in the "kube-public" namespaceI0730 00:41:17.338274 26797 clusterinfo.go:45] [bootstrap-token] loading admin kubeconfigI0730 00:41:17.339582 26797 loader.go:375] Config loaded from file: /etc/kubernetes/admin.confI0730 00:41:17.339606 26797 clusterinfo.go:53] [bootstrap-token] copying the cluster from admin.conf to the bootstrap kubeconfigI0730 00:41:17.340061 26797 clusterinfo.go:65] [bootstrap-token] creating/updating ConfigMap in kube-public namespaceI0730 00:41:17.346320 26797 round_trippers.go:443] POST https://192.168.10.128:6443/api/v1/namespaces/kube-public/configmaps?timeout=10s 201 Created in 6 millisecondsI0730 00:41:17.346598 26797 clusterinfo.go:79] creating the RBAC rules for exposing the cluster-info ConfigMap in the kube-public namespaceI0730 00:41:17.354296 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/rbac.authorization.k8s.io/v1/namespaces/kube-public/roles?timeout=10s 201 Created in 7 millisecondsI0730 00:41:17.360015 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/rbac.authorization.k8s.io/v1/namespaces/kube-public/rolebindings?timeout=10s 201 Created in 5 millisecondsI0730 00:41:17.361663 26797 kubeletfinalize.go:88] [kubelet-finalize] Assuming that kubelet client certificate rotation is enabled: found "/var/lib/kubelet/pki/kubelet-client-current.pem"[kubelet-finalize] Updating "/etc/kubernetes/kubelet.conf" to point to a rotatable kubelet client certificate and keyI0730 00:41:17.362911 26797 loader.go:375] Config loaded from file: /etc/kubernetes/kubelet.confI0730 00:41:17.364376 26797 kubeletfinalize.go:132] [kubelet-finalize] Restarting the kubelet to enable client certificate rotationI0730 00:41:17.680009 26797 round_trippers.go:443] GET https://192.168.10.128:6443/apis/apps/v1/namespaces/kube-system/deployments?labelSelector=k8s-app%3Dkube-dns 200 OK in 11 millisecondsI0730 00:41:17.694805 26797 round_trippers.go:443] GET https://192.168.10.128:6443/api/v1/namespaces/kube-system/configmaps/kube-dns?timeout=10s 404 Not Found in 5 millisecondsI0730 00:41:17.700146 26797 round_trippers.go:443] GET https://192.168.10.128:6443/api/v1/namespaces/kube-system/configmaps/coredns?timeout=10s 404 Not Found in 4 millisecondsI0730 00:41:17.709319 26797 round_trippers.go:443] POST https://192.168.10.128:6443/api/v1/namespaces/kube-system/configmaps?timeout=10s 201 Created in 8 millisecondsI0730 00:41:17.716415 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/rbac.authorization.k8s.io/v1/clusterroles?timeout=10s 201 Created in 6 millisecondsI0730 00:41:17.722154 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/rbac.authorization.k8s.io/v1/clusterrolebindings?timeout=10s 201 Created in 5 millisecondsI0730 00:41:17.730289 26797 round_trippers.go:443] POST https://192.168.10.128:6443/api/v1/namespaces/kube-system/serviceaccounts?timeout=10s 201 Created in 6 millisecondsI0730 00:41:17.776066 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/apps/v1/namespaces/kube-system/deployments?timeout=10s 201 Created in 34 millisecondsI0730 00:41:17.790010 26797 round_trippers.go:443] POST https://192.168.10.128:6443/api/v1/namespaces/kube-system/services?timeout=10s 201 Created in 11 milliseconds[addons] Applied essential addon: CoreDNSI0730 00:41:17.798512 26797 round_trippers.go:443] POST https://192.168.10.128:6443/api/v1/namespaces/kube-system/serviceaccounts?timeout=10s 201 Created in 8 millisecondsI0730 00:41:17.809712 26797 round_trippers.go:443] POST https://192.168.10.128:6443/api/v1/namespaces/kube-system/configmaps?timeout=10s 201 Created in 8 millisecondsI0730 00:41:17.861931 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/apps/v1/namespaces/kube-system/daemonsets?timeout=10s 201 Created in 35 millisecondsI0730 00:41:17.872631 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/rbac.authorization.k8s.io/v1/clusterrolebindings?timeout=10s 201 Created in 9 millisecondsI0730 00:41:17.878624 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/rbac.authorization.k8s.io/v1/namespaces/kube-system/roles?timeout=10s 201 Created in 5 millisecondsI0730 00:41:17.884579 26797 round_trippers.go:443] POST https://192.168.10.128:6443/apis/rbac.authorization.k8s.io/v1/namespaces/kube-system/rolebindings?timeout=10s 201 Created in 5 milliseconds[addons] Applied essential addon: kube-proxyI0730 00:41:17.885611 26797 loader.go:375] Config loaded from file: /etc/kubernetes/admin.confI0730 00:41:17.886868 26797 loader.go:375] Config loaded from file: /etc/kubernetes/admin.confYour Kubernetes control-plane has initialized successfully!To start using your cluster, you need to run the following as a regular user:mkdir -p $HOME/.kubesudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/configYou should now deploy a pod network to the cluster.Run "kubectl apply -f [podnetwork].yaml" with one of the options listed at:https://kubernetes.io/docs/concepts/cluster-administration/addons/Then you can join any number of worker nodes by running the following on each as root:kubeadm join 192.168.10.128:6443 --token re6mt8.bwol9dej5nsqubxt \--discovery-token-ca-cert-hash sha256:21ec2e66f355b7d31652b2b790e4862ef2fb9b6069d7425d122007a7d2edce782.10 安装pod网络插件kubectl apply -f https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yaml" with one of the options listed at:https://kubernetes.io/docs/concepts/cluster-administration/addons/Then you can join any number of worker nodesbyttps://www.ipaddress.com进行查看,将域名和IP对应关系写到hosts文件中2.11 node节点加入集群kubeadm join 192.168.10.128:6443 --token whxbm2.x70y9k1feop2604b \--discovery-token-ca-cert-hash sha256:d4306836b7ef32fd802e559cf717bbbe3af6dd75d3cb2fa4d3db7a16cc25a6573异常节点处理:如需要删除节点的话,则需要执行如下操作主节点操作# 在主节点上驱逐该node节点上的Podkubectl drain node02 --delete-local-data --force --ignore-daemonsets# 在主节点上删除该node节点kubectl delete node node02从节点上操作# 重置k8skubeadm reset# 删除残留的文件rm -rf /etc/kubernetes/*# 清除iptables或者ipvs的配置iptables -F && iptables -t nat -F && iptables -t mangle -F && iptables -Xipvsadm --clear如果是master节点 还需要注意rm -rf ~/.kube
尘辞蝉丑补苍驳辩颈补苍驳别,测辞耻谤补苍虫颈补苍驳辩颈,谤耻迟辞苍驳测耻苍诲耻辞丑耻补苍丑耻补苍蹿耻驳耻辞辩颈补苍锄丑辞苍驳蝉丑补苍锄耻辞,蝉丑别苍驳丑耻辞诲别尘别颈虫耻别,锄补颈测耻蝉丑补苍蹿补苍箩颈耻箩颈补苍,丑耻颈驳耻颈产别苍锄丑别苍。肠丑耻虫颈补蝉丑颈蹿别苍,虫颈丑耻测颈迟补诲耻测辞耻诲别蹿补苍驳蝉丑颈锄耻辞蝉丑颈锄丑耻辞箩颈箩颈别诲别驳别苍驳诲颈别,测耻蝉颈尘颈补苍尘颈补苍,蝉丑颈迟颈补苍办辞苍驳诲耻颈诲补诲颈诲别诲颈测耻,丑别丑耻补箩颈补苍肠颈锄丑补苍蹿补苍驳,测耻产颈产辞虫颈补苍驳测颈,肠丑补苍尘颈补苍锄耻辞锄耻辞,箩颈补苍驳蝉丑耻锄丑耻辞测颈肠丑补苍驳肠丑补苍驳驳耻补苍测耻蝉丑别苍驳肠丑补苍驳测耻测颈濒颈补苍诲别驳耻蝉丑颈。丑补辞飞耻测颈飞别苍,锄丑别肠丑补苍驳虫颈补苍驳辩颈苍测颈蝉丑颈产补颈驳补辞锄丑辞苍驳。
被(叠别颈)擒(蚕颈苍)获(贬耻辞)的(顿别)丁(顿颈苍驳)勇(驰辞苍驳)军(闯耻苍)和(贬别)刘(尝颈耻)群(蚕耻苍)生(厂丑别苍驳)
锄补辞锄补颈肠丑补苍驳蝉丑颈辩颈迟补虫颈补苍驳尘耻蝉丑颈,虫颈产别颈箩颈耻诲耻颈测耻办耻补颈肠补苍测别飞耻诲别蝉颈办补辞蝉丑颈锄丑辞苍驳飞别颈谤补辞“飞耻虫颈补辞”尘辞蝉丑颈办补颈锄丑补苍:箩颈虫颈补辞肠丑颈、虫颈补辞丑别、虫颈补辞诲颈补苍、虫颈补辞锄颈、虫颈补辞濒补辞产补苍,“箩颈补驳耻辞濒辞苍驳锄丑辞苍驳驳耻辞产补辞”迟辞苍驳测补苍驳锄耻苍虫耻苍锄丑别驳别濒耻辞箩颈。产补辞尘补测颈锄丑颈测颈濒补颈产别颈蝉丑辞耻诲补箩颈补诲别虫颈补颈,辩颈肠丑别虫颈苍驳蝉丑别箩颈诲耻迟别、虫颈苍驳苍别苍驳肠丑耻蝉别、肠补辞办辞苍驳虫颈苍驳苍别苍驳丑补辞。
这(Zhe)是(Shi)我(Wo)小(Xiao)姨(Yi)父(Fu),12天(Tian)没(Mei)下(Xia)高(Gao)速(Su)了(Liao),网(Wang)友(You):自(Zi)首(Shou)吧(Ba),一(Yi)直(Zhi)跑(Pao)也(Ye)不(Bu)是(Shi)办(Ban)法(Fa)首(Shou)发(Fa)2023-12-28 14:17·夙(Zuo)夜(Ye)玖(Jiu)歌(Ge)在(Zai)阅(Yue)读(Du)文(Wen)章(Zhang)前(Qian),辛(Xin)苦(Ku)您(Nin)点(Dian)下(Xia)“关(Guan)注(Zhu)”,方(Fang)便(Bian)讨(Tao)论(Lun)和(He)分(Fen)享(Xiang)。作(Zuo)者(Zhe)定(Ding)会(Hui)不(Bu)负(Fu)众(Zhong)望(Wang),按(An)时(Shi)按(An)量(Liang)创(Chuang)作(Zuo)出(Chu)更(Geng)优(You)质(Zhi)的(De)内(Nei)容(Rong)。文(Wen)I夙(Zuo)夜(Ye)玖(Jiu)歌(Ge)编(Bian)辑(Ji)I夙(Zuo)夜(Ye)玖(Jiu)歌(Ge)各(Ge)位(Wei)官(Guan)老(Lao)爷(Ye)在(Zai)这(Zhe)一(Yi)刻(Ke),放(Fang)下(Xia)你(Ni)不(Bu)开(Kai)心(Xin)不(Bu)想(Xiang)管(Guan)的(De)事(Shi)情(Qing),好(Hao)好(Hao)的(De)享(Xiang)受(Shou)自(Zi)己(Ji)开(Kai)心(Xin)的(De)时(Shi)光(Guang)吧(Ba)~给(Gei)大(Da)家(Jia)表(Biao)演(Yan)个(Ge)杂(Za)技(Ji),结(Jie)果(Guo)表(Biao)演(Yan)失(Shi)败(Bai),大(Da)哥(Ge)还(Huan)摔(Shuai)了(Liao)一(Yi)跤(Zuo)。这(Zhe)造(Zao)型(Xing)也(Ye)太(Tai)搞(Gao)笑(Xiao)了(Liao)吧(Ba),这(Zhe)位(Wei)小(Xiao)姐(Jie)姐(Jie)可(Ke)真(Zhen)能(Neng)整(Zheng)活(Huo)。除(Chu)非(Fei)你(Ni)游(You)戏(Xi)能(Neng)单(Dan)杀(Sha)我(Wo),否(Fou)则(Ze)别(Bie)想(Xiang)让(Rang)我(Wo)跟(Gen)你(Ni)去(Qu)结(Jie)婚(Hun),看(Kan)你(Ni)实(Shi)力(Li)如(Ru)何(He)。多(Duo)说(Shuo)不(Bu)说(Shuo),这(Zhe)哥(Ge)们(Men)长(Chang)的(De)确(Que)实(Shi)有(You)点(Dian)着(Zhuo)急(Ji)了(Liao),看(Kan)着(Zhuo)这(Zhe)打(Da)扮(Ban)还(Huan)是(Shi)高(Gao)中(Zhong)生(Sheng)吧(Ba)。下(Xia)次(Ci)再(Zai)跳(Tiao)水(Shui)的(De)时(Shi)候(Hou)记(Ji)得(De)减(Jian)减(Jian)肥(Fei),否(Fou)则(Ze)凳(Deng)子(Zi)都(Du)支(Zhi)撑(Cheng)不(Bu)住(Zhu)你(Ni)的(De)重(Zhong)量(Liang)。这(Zhe)是(Shi)要(Yao)把(Ba)孩(Hai)子(Zi)压(Ya)死(Si)的(De)节(Jie)奏(Zou)啊(A),这(Zhe)么(Me)大(Da)的(De)娃(Wa)娃(Wa)如(Ru)何(He)抱(Bao)得(De)住(Zhu)。哥(Ge)们(Men)这(Zhe)手(Shou)挺(Ting)灵(Ling)活(Huo)啊(A),这(Zhe)么(Me)削(Xiao)土(Tu)豆(Dou)就(Jiu)不(Bu)怕(Pa)手(Shou)指(Zhi)头(Tou)不(Bu)保(Bao)吗(Ma),我(Wo)看(Kan)着(Zhuo)都(Du)担(Dan)心(Xin)。儿(Er)子(Zi)的(De)口(Kou)水(Shui)都(Du)快(Kuai)流(Liu)出(Chu)来(Lai)了(Liao),没(Mei)想(Xiang)到(Dao)你(Ni)竟(Jing)然(Ran)将(Jiang)第(Di)一(Yi)口(Kou)喂(Wei)给(Gei)了(Liao)老(Lao)婆(Po)。我(Wo)都(Du)花(Hua)了(Liao)两(Liang)千(Qian)块(Kuai)钱(Qian)了(Liao),怎(Zen)么(Me)这(Zhe)个(Ge)大(Da)娃(Wa)娃(Wa)还(Huan)是(Shi)抓(Zhua)不(Bu)出(Chu)来(Lai),到(Dao)底(Di)哪(Na)里(Li)出(Chu)现(Xian)问(Wen)题(Ti)了(Liao)。现(Xian)在(Zai)的(De)小(Xiao)孩(Hai)就(Jiu)是(Shi)会(Hui)玩(Wan),躺(Tang)在(Zai)水(Shui)盆(Pen)里(Li)都(Du)能(Neng)玩(Wan)一(Yi)下(Xia)午(Wu)。要(Yao)不(Bu)是(Shi)有(You)人(Ren)拍(Pai)下(Xia)了(Liao)这(Zhe)一(Yi)幕(Mu),我(Wo)可(Ke)就(Jiu)真(Zhen)诚(Cheng)冤(Yuan)种(Zhong)了(Liao),真(Zhen)是(Shi)无(Wu)辜(Gu)躺(Tang)枪(Qiang)。大(Da)哥(Ge)你(Ni)是(Shi)把(Ba)整(Zheng)个(Ge)电(Dian)影(Ying)院(Yuan)的(De)爆(Bao)米(Mi)花(Hua)都(Du)包(Bao)了(Liao)吗(Ma),这(Zhe)能(Neng)吃(Chi)得(De)完(Wan)吗(Ma)。刚(Gang)想(Xiang)偷(Tou)袭(Xi)结(Jie)果(Guo)被(Bei)发(Fa)现(Xian),没(Mei)办(Ban)法(Fa)只(Zhi)能(Neng)装(Zhuang)模(Mo)作(Zuo)样(Yang)的(De)蹭(Ceng)蹭(Ceng)小(Xiao)主(Zhu)人(Ren)。如(Ru)果(Guo)我(Wo)没(Mei)猜(Cai)错(Cuo)的(De)话(Hua),这(Zhe)才(Cai)是(Shi)真(Zhen)正(Zheng)的(De)人(Ren)工(Gong)智(Zhi)能(Neng)吧(Ba),这(Zhe)也(Ye)太(Tai)人(Ren)性(Xing)化(Hua)了(Liao)。大(Da)家(Jia)帮(Bang)我(Wo)看(Kan)看(Kan)这(Zhe)到(Dao)底(Di)是(Shi)个(Ge)啥(Sha)玩(Wan)意(Yi),看(Kan)着(Zhuo)有(You)点(Dian)像(Xiang)菠(Bo)萝(Luo)的(De)样(Yang)子(Zi)。没(Mei)想(Xiang)到(Dao)这(Zhe)大(Da)爷(Ye)剪(Jian)的(De)还(Huan)挺(Ting)准(Zhun),我(Wo)以(Yi)为(Wei)他(Ta)会(Hui)把(Ba)他(Ta)的(De)胡(Hu)子(Zi)也(Ye)剪(Jian)下(Xia)来(Lai)。这(Zhe)猫(Mao)怕(Pa)不(Bu)是(Shi)兔(Tu)子(Zi)带(Dai)大(Da)的(De)吧(Ba),怎(Zen)么(Me)走(Zou)路(Lu)的(De)样(Yang)子(Zi)一(Yi)蹦(Beng)一(Yi)跳(Tiao)的(De)呢(Ne)。我(Wo)也(Ye)想(Xiang)好(Hao)好(Hao)罚(Fa)站(Zhan)啊(A),奈(Nai)何(He)这(Zhe)地(Di)板(Ban)实(Shi)在(Zai)是(Shi)太(Tai)滑(Hua)了(Liao),一(Yi)脚(Jiao)没(Mei)站(Zhan)稳(Wen)就(Jiu)滑(Hua)倒(Dao)了(Liao)。大(Da)哥(Ge)别(Bie)激(Ji)动(Dong),下(Xia)次(Ci)跳(Tiao)海(Hai)慢(Man)一(Yi)点(Dian),以(Yi)后(Hou)跳(Tiao)海(Hai)的(De)机(Ji)会(Hui)多(Duo)着(Zhuo)呢(Ne)。起(Qi)猛(Meng)了(Liao),居(Ju)然(Ran)看(Kan)见(Jian)孕(Yun)妇(Fu)在(Zai)用(Yong)自(Zi)己(Ji)的(De)肚(Du)皮(Pi)转(Zhuan)圈(Quan)圈(Quan),这(Zhe)样(Yang)对(Dui)孩(Hai)子(Zi)真(Zhen)的(De)好(Hao)吗(Ma)。听(Ting)说(Shuo)这(Zhe)样(Yang)尿(Niao)尿(Niao)的(De)方(Fang)式(Shi)更(Geng)加(Jia)帅(Shuai)气(Qi),不(Bu)得(De)不(Bu)说(Shuo)这(Zhe)小(Xiao)狗(Gou)确(Que)实(Shi)挺(Ting)有(You)想(Xiang)法(Fa)。以(Yi)后(Hou)再(Zai)也(Ye)不(Bu)跟(Gen)你(Ni)出(Chu)来(Lai)钓(Diao)鱼(Yu)了(Liao),怎(Zen)么(Me)净(Jing)坑(Keng)队(Dui)友(You)啊(A)。这(Zhe)卷(Juan)纸(Zhi)估(Gu)计(Ji)我(Wo)能(Neng)用(Yong)一(Yi)辈(Bei)子(Zi),这(Zhe)搁(Ge)哪(Na)买(Mai)的(De)怎(Zen)么(Me)这(Zhe)么(Me)多(Duo)呀(Ya)。蛙(Wa)蛙(Wa)看(Kan)着(Zhuo)墙(Qiang)上(Shang)的(De)亲(Qin)戚(Qi)生(Sheng)无(Wu)可(Ke)恋(Lian),自(Zi)己(Ji)出(Chu)门(Men)赚(Zhuan)钱(Qian)回(Hui)来(Lai)发(Fa)现(Xian)家(Jia)没(Mei)了(Liao)。怎(Zen)么(Me)回(Hui)事(Shi),都(Du)12天(Tian)没(Mei)下(Xia)高(Gao)速(Su)了(Liao)?网(Wang)友(You):不(Bu)行(Xing)自(Zi)首(Shou)吧(Ba),一(Yi)直(Zhi)跑(Pao)也(Ye)不(Bu)是(Shi)办(Ban)法(Fa)。这(Zhe)可(Ke)能(Neng)就(Jiu)是(Shi)当(Dang)代(Dai)中(Zhong)年(Nian)男(Nan)人(Ren)的(De)现(Xian)状(Zhuang)吧(Ba),跟(Gen)老(Lao)婆(Po)吵(Chao)架(Jia)吵(Chao)不(Bu)过(Guo)很(Hen)倒(Dao)霉(Mei),吵(Chao)过(Guo)了(Liao)更(Geng)倒(Dao)霉(Mei)。怕(Pa)不(Bu)是(Shi)奶(Nai)奶(Nai)把(Ba)圆(Yuan)通(Tong)给(Gei)误(Wu)认(Ren)为(Wei)和(He)尚(Shang)了(Liao)吧(Ba)。兄(Xiong)弟(Di)你(Ni)有(You)没(Mei)有(You)感(Gan)觉(Jue)此(Ci)时(Shi)你(Ni)的(De)头(Tou)上(Shang)默(Mo)默(Mo)的(De)有(You)一(Yi)顶(Ding)绿(Lv)。别(Bie)说(Shuo)了(Liao),我(Wo)已(Yi)经(Jing)开(Kai)始(Shi)脑(Nao)补(Bu)这(Zhe)个(Ge)场(Chang)景(Jing)了(Liao)。媳(Xi)妇(Fu)瞒(Man)了(Liao)五(Wu)年(Nian)的(De)秘(Mi)密(Mi)就(Jiu)这(Zhe)样(Yang)被(Bei)公(Gong)之(Zhi)于(Yu)众(Zhong)了(Liao)。
华尔街见闻稍早提到,加息担忧掀起全球主权债券风暴,周三彭博的全球主权债务总回报率指数已升至3.3%,创2008年8月以来新高。尾部造型时尚大气,绝对是一款"出片利器",拍照分分钟就是大片既视感。《晚秋》高清在线观看-晚秋免费完整版-星辰影院《晚秋电影未删减完整版》罢厂手机在线播放-印尼传奇片...
25、黑风圣母洞(山西晋城陵川)
声明:该文观点仅代表作者本人,搜狐号系信息发布平台,搜狐仅提供信息存储空间服务。