1.分类 级联删除: 删除StatefulSet时同时删除pod 非级联删除: 删除StatefulSet时不删除pod 2.级联删除 [root@k8s-master01 ~]# kubectl get pod NAME READY STATUS RESTARTS AGE nginx-6cdd5d ...
分类:
其他好文 时间:
2021-02-15 12:41:00
阅读次数:
0
struct默认成员为public的,class默认成员为private的,此外并没有什么区别 所以用一个结构体给另一个结构体赋值时,一般结构体里如果没有定义赋值运算符,则会像类那样使用默认赋值运算符或默认拷贝构造函数。 1 #include <iostream> 2 3 using namespa ...
分类:
其他好文 时间:
2021-02-15 12:40:35
阅读次数:
0
模拟题。 const int N=55; string mp[]={"S","H","C","D","J"}; string s[N]; string t[N]; int p[N]; int n; int cnt; void init() { for(int i=0;i<4;i++) for(int ...
分类:
系统相关 时间:
2021-02-15 12:40:01
阅读次数:
0
Most people have already heard about the new “async” and “await” functionality coming in Visual Studio 11. This is Yet Another Introductory Post. Firs ...
分类:
其他好文 时间:
2021-02-15 12:36:36
阅读次数:
0
注意不满$4$位的话要补成$4$位。 string s; set<int> S; int main() { cin>>s; while(s.size()<4) s='0'+s; while(true) { sort(s.begin(),s.end(),greater<char>()); string ...
分类:
其他好文 时间:
2021-02-15 12:21:49
阅读次数:
0
1、引用Log4Net 在Nuget中引入Log4Net和Microsoft.Extensions.Logging.Log4Net.AspNetCore。 2、配置Log4Net (1) 整理配置文件 <?xml version="1.0" encoding="utf-8" ?> <log4net> ...
JAVA流程控制 Scanner对象 通过Scanner类来获取用户的输入 Scanner s = new Scanner(System.in); 通过Scanner类的next()与nextLine(方法获取输入的字符串,在读取前 我们一般需要使用hasNext()与hasNextLine()判断 ...
分类:
编程语言 时间:
2021-02-15 12:17:43
阅读次数:
0
#阿里云OSS对象存储服务 准备工作 1、在service模块新建子模块service_oss 2、引入pom.xml文件中引入oss服务依赖 <dependencies> <!--aliyunOSS--> <dependency> <groupId>com.aliyun.oss</groupId> ...
分类:
其他好文 时间:
2021-02-15 12:11:15
阅读次数:
0
服务器下安装nginx sudo apt-get install nginx nginx的文件配置 服务地址:/etc/init.d/nginx 配置地址:/etc/nginx/ 如:/etc/nginx/nginx.conf Web默认目录:/usr/share/nginx/http/ 如:usr ...
分类:
其他好文 时间:
2021-02-15 12:10:22
阅读次数:
0
本文作为ASP.Net Core Web API学习的一部分,介绍了如何使用Nginx进行简单的负载配置。 1、将ASP.Net Core Web API项目发布到不同的服务器 例如,将项目发布到本地不同的文件夹中。 2、使用dotnet命令启动已发布的ASP.Net Core Web API服务 ...