728x90
쿠버를 세팅 하면서 생긴 이슈이다.
sudo apt-get update
후에 생긴 에러다
해결법
sudo mkdir -p /etc/apt/keyrings
echo "deb [signed-by=/etc/apt/keyrings/kubernetes.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee /etc/apt/sources.list.d/kubernetes.list
curl -fsSL https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo gpg --dearmor -o /etc/apt/keyrings/kubernetes.gpg
참고
https://github.com/kubernetes/release/issues/2862#issuecomment-1533888814
'난중(개발)일기 > 삽질기록' 카테고리의 다른 글
Mybatis로 되어 있는 프로젝트에 JPA 혼합시키기 (0) | 2024.02.19 |
---|---|
spring framework 4.2.8 버전과 @RequiredArgsConstructor (0) | 2024.02.19 |
[H2] org.h2.jdbc.JdbcSQLSyntaxErrorException: Values of types "BOOLEAN" and "TIMESTAMP(6)" are not comparable; (0) | 2023.02.27 |
lock을 분명 걸었는데 그렇지 않은 결과가 나올 때 (0) | 2023.02.26 |
Flyway + test db용으로 h2를 사용할 때 Jpa가 테이블을 못찾을 때 (0) | 2023.02.24 |