Blog / k8s
4 Posts
Run Bookinfo using Kubernetes
Running Bookinfo with Kubernetes 4-minute read Page test This is ongoing work. We will add its parts in segments. Welcome to provide feedback at Discussion.istio.io. This module shows you an application composed of four microservices written in different programming languages: productpage, details, ratings, and reviews. We will refer to the combination of this application as Bookinfo, where you can learn more about it on the Bookinfo example page.
查看全文Kubernetes Container Cloud Platform Deployment and Operations Manual
Sample Sheet 2 Task 4 Kubernetes Container Cloud Platform Deployment and Maintenance 1. Create a Pod named test in the namespace test-nginx, containing four specified images: nginx, redis, memcached, busybox. kubectl run test --image=nginx --image=redis --image=memcached --image=buxybox --restart=Never -n
查看全文Kubernetes容器云平台部署与运维[10分]
【任务4】Kubernetes容器云平台部署与运维[10分] 【适用平台】私有云 【题目1】Pod管理[0.5分] 在master节点/root目录下编写yaml文件nginx.yaml,具体要求如下: (1)Pod名称:nginx-pod; (2)命名空间:default; (3)容器名称:mynginx; (4)镜像:nginx;拉取策略:IfNotPresent; (5)容器端口:80。 完
查看全文k8s运维命令大全
dk8s运维命令大全 Pod控制器 Pod是kubernetes的最小管理单元,在kubernetes中,按照pod的创建方式可以将其分为两类: 自主式pod:kubernetes直接创建出来的Pod,这种pod删除后就没有了,也不会重建 控制器创建的pod:kubernetes通过控制器创建的pod,这种pod删除了之后还会自动重建 什么是Pod控制器: Pod控制器是管理pod的
查看全文