मेरे पास स्थिर रेपो कॉन्फ़िगर किया गया है
▶ helm repo list
NAME URL
stable https://kubernetes-charts.storage.googleapis.com
और मुझे पता है कि मैं प्रदर्शन कर सकता हूं
helm install stable/jenkins
फिर निम्न आदेश कोई परिणाम प्राप्त क्यों नहीं कर रहा है?
▶ helm search repo stable/jenkins
No results found
~
▶ helm search repo jenkins
No results found
का उपयोग करते हुए
▶ helm version --tls
Client: &version.Version{SemVer:"v2.9.1", GitCommit:"20adb27c7c5868466912eebdf6664e7390ebe710", GitTreeState:"clean"}
Server: &version.Version{SemVer:"v2.16.8", GitCommit:"145206680c1d5c28e3fcf30d6f596f0ba84fcb47", GitTreeState:"clean"}
संपादित करें: अपडेट के बाद भी
▶ helm repo update
Hang tight while we grab the latest from your chart repositories...
...Successfully got an update from the "flagger" chart repository
...Successfully got an update from the "incubator" chart repository
...Successfully got an update from the "stakater" chart repository
...Successfully got an update from the "stable" chart repository
...Successfully got an update from the "bitnami" chart repository
Update Complete. ⎈ Happy Helming!⎈
~/ 40m
▶ helm search repo stable/jenkins
No results found
मैंने remove
और add
को फिर से stable
रेपो वापस करने की कोशिश की; एक ही परिणाम।
2 जवाब
आप helm search repo stable/jenkins
चला रहे हैं और यह हेलम 3 सिंटैक्स है।
helm3 के लिए इस सहायता पर एक नज़र डालें:
$ helm search --help
Search provides the ability to search for Helm charts in the various places
they can be stored including the Helm Hub and repositories you have added. Use
search subcommands to search different locations for charts.
Usage:
helm search [command]
Available Commands:
hub search for charts in the Helm Hub or an instance of Monocular
repo search repositories for a keyword in charts
लेकिन आपके प्रश्न में आपने लिखा है:
पतवार संस्करण --tls
ग्राहक: &संस्करण.संस्करण{SemVer:"v2.9.1 ...
इसका मतलब है कि आप हेल्म 2 का उपयोग कर रहे हैं। अब हेल्म 2 सहायता कमांड पर एक नजर डालते हैं:
$ helm search --help
...
To look for charts with a particular name (such as stable/mysql), try
searching using vertical tabs (\v). Vertical tabs are used as the delimiter
between search fields. For example:
helm search --regexp '\vstable/mysql\v'
To search for charts using common keywords (such as "database" or
"key-value store"), use
helm search database
or
helm search key-value store
Usage:
helm search [keyword] [flags]
TLDR: उपयोग करें:
helm search stable/jenkins
और अधिक प्रश्न होने पर मुझसे पूछें। मुझे मदद करने में खुशी होगी.
अपने भंडार अद्यतन करने का प्रयास करें:
$ helm repo add stable https://kubernetes-charts.storage.googleapis.com
$ helm repo update
Hang tight while we grab the latest from your chart repositories...
...Successfully got an update from the "stable" chart repository
Update Complete. ⎈ Happy Helming!⎈
$ helm search repo stable/jenkins
NAME CHART VERSION APP VERSION DESCRIPTION
stable/jenkins 2.1.0 lts Open source continuous integration server. It s...
संबंधित सवाल
नए सवाल
kubernetes
KUBERNETES क्वेरीटेस्ट को विकसित किया जाना चाहिए। Kubernetes एक ओपन-सोर्स प्लेटफ़ॉर्म है जिसे कई मेजबानों और / या बादलों में तैनाती, स्केलिंग और एप्लिकेशन कंटेनरों के संचालन को स्वचालित करने के लिए डिज़ाइन किया गया है। क्लस्टर्स को कॉन्फ़िगर करने के बारे में प्रश्न https://serverfault.com पर पूछे जाने चाहिए