码迷,mamicode.com
首页 >  
搜索关键字:deployment failure    ( 2145个结果
k8s service
创建 ClusterIP 类型的 Service apiVersion: apps/v1 kind: Deployment metadata: name: my-deployment spec: selector: matchLabels: app: metrics department: sale ...
分类:其他好文   时间:2021-05-24 06:53:19    阅读次数:0
优化nginx-ingress-controller性能
1.首先优化ingress-controller 通过 Helm 安装 Nginx Ingress 的默认关联配置映射实例名称为 nginx-ingress-controller,用户可以通过修改资源对象 Deployment/DaemonSet 实例 nginx-ingress-controlle ...
分类:其他好文   时间:2021-05-24 01:53:57    阅读次数:0
vsphere拓扑搭建常见问题合集
目录 1.vcenter 6.7安装要求;2.vcenter第一阶段安装失败,提示:"Unable to proceed with stage 2 of the deployment process. Click close to exit the installer.”3.无DNS下部署安装vce ...
分类:其他好文   时间:2021-05-23 22:59:26    阅读次数:0
IDEA开启热部署功能
1、【file】==》【settings】==》【build,execution,deployment】==》【compiler】==》勾选【build project automatically】。 2、【ctrl+shift+a】==》【actions】==》【registry】==》勾选【co ...
分类:其他好文   时间:2021-05-04 15:26:55    阅读次数:0
The Most Popular Serverless Deployment Tools
Serverless deployment is a key consideration when starting to write software using Function-as-a-Service services such as AWS Lambda. In the beginning ...
分类:其他好文   时间:2021-05-03 11:50:17    阅读次数:0
k8s安装常用软件的yaml文件
参考网址:https://www.bejson.com (网站文件部分有坑,需要擦亮眼睛) nginx k8s版本:v1.20 apiVersion: apps/v1 kind: Deployment metadata: name: my-nginx namespace: test spec: re ...
分类:其他好文   时间:2021-04-26 14:08:07    阅读次数:0
[AWS - Design Resilient Architectures] 1.2 Design highly available and/or fault-tolerant architectures
Cloud computing models: With cloud deployment, nothing is installed on premise, but an Internet connection and network infrastructure solutions With h ...
分类:其他好文   时间:2021-04-21 12:22:48    阅读次数:0
ingress的基本使用
1.Ingress测试示例 1.定义一个deployment [root@k8s-master01 service-ingress]# cat nginx-test.yaml apiVersion: v1 kind: Service metadata: name: ingress-test labe ...
分类:其他好文   时间:2021-04-16 12:25:19    阅读次数:0
ReentrantLock--公平锁和非公平锁源码
1:公平锁和非公平锁 1.1 流程图 1.2 源码分析 ? 锁使用 final Lock lock = new ReentrantLock(); new Thread(()->{ lock.lock(); try { System.out.println(" "); Thread.sleep(100 ...
分类:其他好文   时间:2021-04-07 11:23:49    阅读次数:0
记录一个标准的k8s deployment
首先是deployment: apiVersion: apps/v1 kind: Deployment metadata: name: webapp1 spec: replicas: 1 selector: matchLabels: app: webapp1 template: metadata: ...
分类:其他好文   时间:2021-03-09 13:14:40    阅读次数:0
2145条   上一页 1 2 3 4 ... 215 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!