跳至主要内容
版本:1.26.4-1

Helm Chart 註冊表

為您的使用者或組織發佈 Helm charts。

要求

要使用 Helm Chart 註冊表,可以使用諸如 curlhelm cm-push 外掛之類的簡單HTTP客戶端。

發佈套件

通過運行以下命令來發布套件:

curl --user {username}:{password} -X POST --upload-file ./{chart_file}.tgz https://gitea.example.com/api/packages/{owner}/helm/api/charts

或者使用 helm cm-push 外掛:

helm repo add --username {username} --password {password} {repo} https://gitea.example.com/api/packages/{owner}/helm
helm cm-push ./{chart_file}.tgz {repo}
參數描述
username您的Gitea使用者名稱
password您的Gitea密碼。如果您使用的是2FA或OAuth,請使用個人存取權杖替代密碼進行身份驗證。
repo儲存庫名稱
chart_fileHelm Chart 歸檔文件
owner套件的所有者

安裝套件

要從註冊表中安裝Helm Chart,請執行以下命令:

helm repo add --username {username} --password {password} {repo} https://gitea.example.com/api/packages/{owner}/helm
helm repo update
helm install {name} {repo}/{chart}
參數描述
username您的Gitea使用者名稱
password您的Gitea密碼或個人存取權杖
repo儲存庫的名稱
owner套件的所有者
name本地名稱
chartHelm Chart的名稱