반응형
Yaml 파일에서 환경변수 사용
먼저 환경 변수를 설정함
명령어
export TEST_VERSION=1.0.1
예제 yaml 파일
apiVersion: v1 kind: Pod metadata: name: iksoon-pod-tomcat labels: app: tomcat8 spec: containers: - name: iksoon-tomcat-test image: peksoon/tomcat:$TEST_VERSION ports: - containerPort: 8080 |
yaml 파일 생성 시 환경변수 전달하여 생성
명령어
envsubst < pod2.yaml | kubectl apply -f -
제 글을 복사할 시 출처를 명시해주세요.
글에 오타, 오류가 있다면 댓글로 알려주세요! 바로 수정하겠습니다!
반응형
'Kubernetes > Kubernetes 이론' 카테고리의 다른 글
Container 관련 기술 리서치 (2) | 2022.03.06 |
---|---|
Pod Security Policy deprecated (0) | 2021.11.19 |
Pod생성 시 Container Image 매번 새로 받아오기 (0) | 2021.11.04 |
Kubernetes docker에서 containerd로 마이그레이션 (0) | 2021.10.05 |
Kubernetes docker 지원 중단 관련 설명 (13) | 2021.10.05 |