logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

k8s-deploy Pod to assigned Node

by deafult,Scheduler will schedule Pods to all available Nodes.But in some situations,we will deploy Pod to assigned Node such as deploying using I/O’s Pod to Node with SSD,using GPU’s Pod to Node wi.

#k8s
k8s :AKS with Azure storage

Azure Disk for static:manually create an Azure disk and attach it to a pod in AKS1.create Azure Disk2.mount disk as volumekubectl apply -f azure-disk-pod.yamlkubectl describe pod mypodverify t...

#k8s
k8s-monitor

Weave Scope can show a complete view of clusters and applications. Its excellent interactivity allows users to easily monitor and troubleshoot containerized applications in real time.Heapster is Kube.

#k8s
k8s health check

the default health check : pod will restart when encounteringerrorcreate Pod ,simulate failure by exit “1”then pod has restarted 3 timesLiveness:the process will create healthy file,delete it a...

#k8s
k8s monitor

1.create AKS clusteraz group create -n aks2019rg -l eastusaz aks get-versions -l eastus -o tableaz aks create -g aks2019rg -n aks2019 --node-count 2 --node-vm-size Standard_A2 --disable-rbac --gene...

#k8s
k8s Daemonset

only one Daemonset can run on each nodekubectl get daemonset --namespace=kube-systemkubectl get pod --namespace=kube-system -o widethe system pod:dns\etcd\apiserver\controller manager\scheduler\f...

#k8s
k8s ingress and egress

simple architecture of ingress in k8s:create ingress controllerTo create the ingress controller, use Helm to install nginx-ingress. For added redundancy, two replicas of the NGINX ingress controlle...

#k8s
到底了