Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1004 Bytes

trouble-shooting.md

File metadata and controls

37 lines (28 loc) · 1004 Bytes

문제 해결

yaml이 vs code에서 보기 흉할 때

R, Python 분석과 프로그래밍의 친구 (by R Friend) :: [Visual Studio Code] Kubernetes YAML 확장 팩 설치 및 YAML 언어 설정 (tistory.com)

  • yaml extension 설치
  • 익스텐션 설정
  • setting.json에서
{ 
	"yaml.schemas": 
		{ 
			"kubernetes": "*.yaml" 
		}, 
}  

wavy yellow line

  • 위에 처럼 해도 없어지지 않는다!

One or more containers do not have resource limits - warning in VS Code Kubernetes tools - Stack Overflow

setting -> json 수정

{
    "vs-kubernetes": {
        "disable-linters": ["resource-limits"],
        ...
    },
    ...
}