现象harbor镜像平台服务器出现内部错误,请求无法完成排查登陆dashboard发现node节点状态都为notready,然后登陆node节点看到确实都为notready,本能反应是把kubelet、kube-proxy服务都重新一遍,重新后状态任然为notready状态。这时细看nodes节点状态age为368d,感觉应该是什么过期了,之前还特意申请证书为10年,应该不是证书的问题,后来查阅部
分类:
其他好文 时间:
2020-01-01 10:04:29
阅读次数:
96
转跳点:🐏 1014 福尔摩斯的约会 (20分) 大侦探福尔摩斯接到一张奇怪的字条:我们约会吧! 3485djDkxh4hhGE 2984akDfkkkkggEdsb s&hgsfdk d&Hyscvnm。大侦探很快就明白了,字条上奇怪的乱码实际上就是约会的时间星期四 14:04,因为前面两字符串 ...
分类:
其他好文 时间:
2019-12-31 23:53:08
阅读次数:
77
题目如下: You are given a square board of characters. You can move on the board starting at the bottom right square marked with the character 'S'. You nee ...
分类:
其他好文 时间:
2019-12-29 10:57:18
阅读次数:
68
1.安装部署Prometheus 安装参考:https://www.cnblogs.com/caoweixiong/p/12111035.html 配置prometheus.yml,添加canal的job,示例: - job_name: 'canal' static_configs: - targe ...
分类:
其他好文 时间:
2019-12-28 13:11:36
阅读次数:
310
一眼看出是使用回溯法。 javascript function findWords(board, words) { var rows = board.length, cols = board[0].length, res = [] var visited = new Array(rows).fill ...
分类:
其他好文 时间:
2019-12-27 00:32:31
阅读次数:
136
正则表达式爬取猫眼电影Top100 import requests import re,json from multiprocessing import Pool def get_one_page(url): response = requests.get(url) return response. ...
分类:
其他好文 时间:
2019-12-25 16:22:13
阅读次数:
97
效果图 在线演示 index.js var chess=document.getElementById("chess"); var cxt=chess.getContext('2d'); cxt.strokeStyle="#BFBFBF"; var bgimg=new Image(); bgimg. ...
分类:
其他好文 时间:
2019-12-24 23:32:43
阅读次数:
103
Description Given a board which is a 2D matrix includes a-z and dictionary dict, find the largest collection of words on the board, the words can not ...
分类:
其他好文 时间:
2019-12-22 00:39:36
阅读次数:
70
Description Given a 2D board containing 'X' and 'O', capture all regions surrounded by 'X'. Description Given a 2D board containing 'X' and 'O', captu ...
分类:
其他好文 时间:
2019-12-22 00:10:57
阅读次数:
82
多态:多态指的是一类事物有多种形态 多态性: class Animal: def run(self): raise AtrributeError("子类必须实现这种方法") class Person(Animal): pass p = Person() p.run() 通过父类主动抛出一个异常,告诉 ...
分类:
编程语言 时间:
2019-12-21 15:18:01
阅读次数:
78