摘要: 下面操作都是在 master 中执行 查看当前证书到期时间 for item in `find /etc/kubernetes/pki -maxdepth 2 -name "*.crt"`;do openssl x509 -in $item -text -noout| grep Not;echo $ 阅读全文
posted @ 2021-01-07 16:27 klvchen 阅读(965) 评论(0) 推荐(0) 编辑
摘要: 输出三角形 class ForForTest{ public static void main(String[] args){ for(int i = 1; i<= 5; i++){ //控制行数 for(int j = 1; j <= i; j++){ //控制列数 System.out.prin 阅读全文
posted @ 2021-01-07 14:23 klvchen 阅读(306) 评论(0) 推荐(0) 编辑