반응형
Kubernetes 또는 Docker, CRI-O 등 Container runtime 환경에서 container를 사용하다보면,
UTC + 0로 timezone이 설정되어 있는 경우를 자주 본다.
Container 내부의 timezone을 Seoul(서울)로 변경하려면 아래와 같이 따라하면 된다.
FROM ubuntu:22.04
... 중간 생략 ...
##
## Timezone 변경: Asia/Seoul 로 설정
##
RUN apt install -y tzdata
RUN ln -snf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
... 중간 생략 ...
'kubernetes' 카테고리의 다른 글
Podman 명령 사용을 위한 Insecure Registry 설정 (0) | 2023.02.14 |
---|---|
Harbor 설치 (Container Image Registry 설치) (2) | 2023.02.07 |
Kubernetes에 Harbor Registry 자격 증명(Credential) 설정 [Registry Secret 등록] (0) | 2022.12.29 |
Oracle Cloud(OCI) OKE의 Network LB (0) | 2022.12.05 |
Public Cloud에서 Network LB를 사용하여 UDP, TCP 트래픽 처리하기 (방화벽, Security Rule 설정) (0) | 2022.11.16 |