오늘도 한 뼘 더
[K8S] deployment.yaml 작성 및 실행하기 본문
728x90
반응형
# deployment.yaml 작성
deployment-test.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: deployment-test-service
spec:
replicas: 1
selector:
matchLabels:
app: test-service
template:
metadata:
name: dev-test-service
labels:
app: test-service
spec:
containers:
- name: test-service
image: ${image-url}
ports:
- containerPort: 1000
env:
- name: TZ
value: Asia/Seoul
- replica : 몇 개를 올릴 것인지 설정
- app : 이름 작성
- container : 이름, 포트, 이미지 설정
# deployment.yaml 실행
kubectl apply -f deployment.yaml
728x90
반응형
'DevOps & Infra > K8S(Kubernetes)' 카테고리의 다른 글
[k8s] Kubernetes(쿠버네티스) (0) | 2022.12.13 |
---|---|
[k8s] Secret.yaml 파일 사용하여 환경변수 보호하기 (0) | 2022.11.30 |
[EKS] eksctl - AWS Load Balancer Controller 설치 (0) | 2022.10.28 |
[EKS] eksctl - 노드 그룹(node group) 생성하기 (0) | 2022.10.25 |
[EKS] 다중 클러스터(Cluster) 접근 (0) | 2022.10.24 |
Comments