亲和性反亲和性调度
需要集群中有2个节点 ; 第1个deployment名称为cka-1122-01,使用nginx镜像,有2个pod,并配置该deployment自身的pod之间在节点级别反亲和; 第2个deployment名称为cka-1122-02,使用...
需要集群中有2个节点 ; 第1个deployment名称为cka-1122-01,使用nginx镜像,有2个pod,并配置该deployment自身的pod之间在节点级别反亲和; 第2个deployment名称为cka-1122-02,使用...
apiVersion: apps/v1 kind: Deployment metadata: name: sakura521yz-002 namespace: default spec: replicas: 2 selector: matc...
http_image_filter_module http_image_filter_module是nginx提供的集成图片处理模块,支持nginx-0.7.54以后的版本,在网站访问量不是很高磁盘有限不想生成多余的图片文件的前提下可,就可...
nginx缓存配置 在nginx.conf加入如下规则: server { location ~* \.(html)$ { access_log off; add_header Cache-Control max-age=no-cache;...
ephemeral-storage 因为ephemeral-storage在k8s 到当前版本(1.8)都是alpha,ephemeral-storage功能默认是不启用的,如果你想使用ephemeral-storage功能需要,你在api...
通过下面内容可知:systemd和cgroupfs都是CGroup管理器,而systemd是大多数Linux发行版原生的。如果Docker运行时和kubelet的CGroup驱动配置为cgroupfs,则意味着使用了systemd作为ini...
自己安装了个 k8s 集群,在helm list 的时候,老是报错:Kubernetes configuration file is group-readable. 解决办法: chmod g-r ~/.kube/config chmod ...
启用eureka服务端单实例时发现报错 系统会在“Getting all instance registry info from the eureka server” 步骤后提示: java.net.ConnectException: Co...
deploy 升级过程中的最大时间由 progressDeadlineSeconds 来定义。 如果升级过程被暂停了,该时间也会同步暂停,时间不会一直增长。 示例 Deployment.yaml apiVersion: apps/v1 ki...
对于多副本应用,当执行 Scale Up 操作时,新副本会作为 backend 被添加到 Service 的负责均衡中,与已有副本一起处理客户的请求。考虑到应用启动通常都需要一个准备阶段,比如加载缓存数据,连接数据库等,从容器启动到正真能够...
最新评论
顶起来
好
好文章
集群节点宕机后无法开启组复制,原因:节点宕机重启后svc默认不添加未就绪的pod,1.24版本在无头svc下添加: annotations: service.alpha.kubernetes.io/tolerate-unready-endpoints: "true" 1.24版本以上添加: 1.24版tolerate-unready-endpointsService 中的注解,改用Service.spec.publishNotReadyAddresses
在使用try_files的时候,能不能根据URI计算MD5访问文件啊,找了很久没找到相关的文章。
post { always { script{ if (currentBuild.currentResult == "ABORTED" || currentBuild.currentResult == "FAILURE" || currentBuild.currentResult == "UNSTABLE" ){ slackSend channel: "#机器人", message: "Build failure: ${env.JOB_NAME} -- No: ${env.BUILD_NUMBER}, please check detail in email!" } else { slackSend channel: "#机器人", message: "Build Success: ${env.JOB_NAME} -- Build No: ${env.BUILD_NUMBER}, please check on http://www.yourwebsite.com" } } } }