From ee056bc6fab477af3ad5f11e5ae6ea707491d2d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B3=80=EC=A0=95=ED=9B=88?= Date: Thu, 23 Feb 2023 07:40:29 +0000 Subject: [PATCH] =?UTF-8?q?=EC=B5=9C=EC=B4=88=20=EC=9E=91=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- search.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 search.md diff --git a/search.md b/search.md new file mode 100644 index 0000000..e303d82 --- /dev/null +++ b/search.md @@ -0,0 +1,27 @@ +## Helm Repo Search +> 추가한 Repo에서 Chart 조회 및 버전 확인 + +## 조회 +``` +helm search repo [keyword] [flags] + +# 키워드 "nginx" 와 일치하는 안정적인 릴리스 버전 검색 +helm search repo nginx + +# 시험판 버전을 포함하여 키워드 "nginx" 와 일치하는 리릴스 버전 검색 +helm search repo nginx --devel + +# 주 버전이 1인 nginx-ingress 의 최신 안정 릴리스 검색 +helm search repo nginx-ingress --version ^1.0.0 +``` + +## 옵션 +``` + --devel 개발 버전(알파, 베타 및 릴리스 후보 릴리스)으로 사용. 버전 '> 0.0.0-0' 에 해당하며 --version이 설정되어 있으면 무시. + -h, --help helm search repo 명령어에 대한 도움말 + --max-col-width uint 출력 테이블의 최대 열 너비 (기본값 50) + -o, --output format 지정된 형식으로 출력. 허용되는 값: table, json, yaml (기본값 table) + -r, --regexp 추가한 저장소 검색에 정규식 사용 + --version string 추가한 레포지터리에 유의적 버전관리 제약을 사용하여 검색 + -l, --versions 추가한 저장소에 대해 각 차트의 각 버전과 함께 긴 목록을 한 줄에 표시 +``` \ No newline at end of file