Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- error
- 백엔드
- 후기
- grafana
- 데이터구조
- F-Lab
- 트러블슈팅
- 도커
- 성능테스트
- 자바백엔드
- AWS
- DB
- java
- 플러터
- 멘토링
- 자바
- 코딩테스트
- 부트캠프
- EC2
- Spring
- IntelliJ
- 알고리즘
- backend
- MySQL
- Flutter
- 에프랩
- 백준
- FLAB
- github
- nGrinder
Archives
- Today
- Total
민스씨의 일취일장
TIssue | Kubernetes | 마스터 init 에러 발생 해결방법 본문
반응형
상황
마스터 인스턴스에서 init 명령어 실행시 에러가 발생한다.
[preflight] Running pre-flight checks
error execution phase preflight: [preflight] Some fatal errors occurred:
[ERROR CRI]: container runtime is not running: output: time="2023-06-07T05:35:24Z" level=fatal msg="validate service connection: CRI v1 runtime API is not implemented for endpoint \"unix:///var/run/containerd/containerd.sock\": rpc error: code = Unimplemented desc = unknown service runtime.v1.RuntimeService"
, error: exit status 1
해결방법
$ sudo rm /etc/containerd/config.toml
$ sudo systemctl restart containerd
위 코드 입력 후 다시 init 해준다.
init 명령
$ sudo kubeadm init
Refference
Kubeadm unknown service runtime.v1alpha2.RuntimeService · Issue #4581 · containerd/containerd
Problem Following Kubernetes official installation instruction for containerd and kubeadm init will fail with unknown service runtime.v1alpha2.RuntimeService. # Commands from https://kubernetes.io/...
github.com
728x90
반응형