728x90
반응형
# hostpath 컨테이너와 노드간 데이터 공유
# work1과 work2에서 진행
sudo mkdir /var/htdocs
sudo -i
echo "work1" > /var/htdocs/index.html
cat /var/htdocs/index.html
- 동일한 방식으로 work2에도 데이터를 저장
gedit count-httpd.yaml
apiVersion: v1
kind: Pod
metadata:
name: hostpath-http
spec:
containers:
- image: httpd
name: web-server
volumeMounts:
- name: html
mountPath: /usr/local/apache2/htdocs
readOnly: true
ports:
- containerPort: 80
protocol: TCP
volumes:
- name: html
hostPath:
path: /var/htdocs
type: Directory
kubectl create -f count-httpd.yaml
kubectl get pod -w
# 서비스 응답확인
kubectl port-forward hostpath-http 8888:80
127.0.0.1:8888
work2 라는 메세지를 확인 할 수 있다.
- 그렇다면 헌재 서비스중인 것은 work2의 pod가 된다는 것을 알 수 있다.
# pod 서비스 확인하기
kubectl get pod -o wide
- hostpath-http 가 work2에 떠 있는 모습을 볼 수 있다.
# GCP에서 실습하기 - 서비스 확인하기
kubectl get pod -n kube-system
- kube-system은 시스템을 관리하기 위한 pod가 모여있다.
여기서 fluentbit-gke-knwz5 는 데이터 로깅되는 리소스를 가지고 오고 있다.
kubectl get pod fluentbit-gke-knwz5 -n kube-system -o yaml
- 위의 명령어로 조회하면 fluentbit-gke-knwz5의 정보를 볼 수 있다.
volumes: 의 내용을 보면 hostpath가 존재한다.
728x90
반응형
'⭐ Kubernetes & EKS > Kubernetes (쿠버네티스)' 카테고리의 다른 글
컨테이너 환경변수 전달방법 (0) | 2021.09.11 |
---|---|
우분투에 비주얼 스튜디오 , 쿠버네티스 설치 및 yaml 파일 작성과 적용 (0) | 2021.09.11 |
레플리케이션 컨트롤러 (0) | 2021.09.08 |
쿠버네티스 - pod - 라이브니스 프로브, 레디니스 프로브 구성 (0) | 2021.09.07 |
jenkins를 yaml파일로 작성하여 실행하기 (0) | 2021.09.06 |