Kubernetes 超入門
Kubernetes(k8s) 是一種讓使用者管理Cluster 的一種工具,在各雲端平台如Azure, GKE, AWS...等等都支援,本文章提供kubernetes 基礎觀念。
Last updated
apiVersion: v1
kind: Pod
metadata:
name: nginx-demo
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80apiVersion: v1
kind: Pod
metadata:
name: nginx-demo
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80// install k3s
curl -sfL https://get.k3s.io | INSTALL_K3S_CHANNEL=latest sh -sudo kubectl apply -f demo.ymlsudo kubectl get pod/nginx-demo -o yaml