1 min read
Once you have a running Kubernetes cluster, you can deploy your containerized applications on top of it.
NodePort nodeport 를 구성하기 위한 yaml 예시: helloworld-nodeport.yaml apiVersion: v1 kind: Service metadata: name: helloworld-nodeport spec: type: NodePort ports: - port: 8080...
Container and Container Orchestrator Virtual Machine 과 Container 의 차이점 VM 가상화는 일반적으로 linux kernel 위에 hypervisor 가 올라가고, 그 위에 guest OS 와 사용자 app 이 올라감 반면, container 는 linux...
Kubernetes Kubernetes is a portable, extensible, open-source platform for managing containerized workloads and services, that facilitates both declarative configuration and...
Pods A.1) 강제로 내리기 kubectl delete pods <팟이름> grace-period=0 force A.2) 외부 연결하기 service 에서 NodePort 를 설정하고, pod 이 어떤 노드에 할당되어 있는지 확인한 뒤에, 해당 노드의 internal ip:port num 형식으로...
각 configuration 파일은 3 개의 파트로 구성되어 있음 metadata label: service 의 selector 가 해당 label 의 이름을 선택하도록 한다.
Kubernetes Pod A Pod is the basic execution unit of a Kubernetes application.
Docker B) Related C) References.
Statefulset a Kubernetes resource object that manages a set of pods with unique identities.
Kubernetes Node A Node is a worker machine in Kubernetes and may be either a virtual or a physical machine, depending on the cluster.