-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed bfe436b with MkDocs version: 1.6.1
- Loading branch information
Unknown
committed
Sep 16, 2024
1 parent
3c6ad4f
commit c85f849
Showing
7 changed files
with
31 additions
and
3 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"]},"docs":[{"location":"","title":"Introduction","text":"<p>Helm is one of the package managers for Kubernetes.</p> <p>This package manager project was created by a company named Deis during the year 2015, which was later acquired by Microsoft. Microsoft began working on the project, with initial commit recorded on October 20, 2015, and released it at KubeCon on November under the brand name Helm Classic.</p> <p>In January 2016, Helm Classic was merged with Google's Deployment Manager for Kubernetes, which is now called Helm. Helm later joined CNCF on June 1, 2018, released Helm Hub, now known as Artifact Hub and achieved <code>graduated</code> status within CNCF in April 2020.</p>"}]} | ||
{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"]},"docs":[{"location":"","title":"Introduction","text":"<p>Helm is one of the package managers for Kubernetes.</p> <p>This package manager project was created by a company named Deis during the year 2015, which was later acquired by Microsoft. Microsoft began working on the project, with initial commit recorded on October 20, 2015, and released it at KubeCon on November under the brand name Helm Classic.</p> <p>In January 2016, Helm Classic was merged with Google's Deployment Manager for Kubernetes, which is now called Helm. Helm later joined CNCF on June 1, 2018, released Helm Hub, now known as Artifact Hub and achieved <code>graduated</code> status within CNCF in April 2020.</p>"},{"location":"installation/","title":"Installation","text":"<p>Here are the various methods for installing Helm software:</p> BinaryScriptSourceHomebrewWingetSnapAdvanced Package Tool (APT)ChocolateyScoopDandified YUM (DNF) or Yellowdog Updater Modified (YUM) <ol> <li>Please download the binary for each release from here, based on the target machine, operating system, and compute architecture.</li> <li>Verify the checksum and signature mentioned in the release to ensure integrity and security.</li> <li>Extract the downloaded compressed binary file. <pre><code>tar -zxvf <file-name>.tar.gz\n</code></pre></li> <li>If you are running it on Linux or macOS, find the <code>helm</code> file in the extracted folder and move it to the destination where you host all your executables, ensuring that your shell is set to include its path. <pre><code>mv helm /usr/local/bin/\n</code></pre></li> <li>If you are running it on Windows, double-click the <code>.exe</code> file inside the extracted folder, then follow the instructions and configurations provided by the installer.</li> </ol> <p>Here is how to run a installer script that automatically fetch the latest version of Helm, operating system and compute architecture information and installs it.</p> <p>Chained Command: <pre><code>curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 && chmod 700 get_helm.sh && ./get_helm.sh\n</code></pre></p> <p>Individual Command: <pre><code>curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3\n</code></pre> <pre><code>chmod 700 get_helm.sh\n</code></pre> <pre><code>./get_helm.sh\n</code></pre></p> <p>Assuming you have Go and Git installed, here is the command to install Helm:</p> <p>Chained Command: <pre><code>git clone https://github.com/helm/helm.git && cd helm && make\n</code></pre></p> <p>Individual Command: <pre><code>git clone https://github.com/helm/helm.git\n</code></pre> <pre><code>cd helm\n</code></pre> <pre><code>make\n</code></pre></p> <p>Assuming you have Homebrew installed, here is the command to install Helm:</p> <pre><code>brew install helm\n</code></pre> <p>Assuming you have Winget installed, here is the command to install Helm:</p> <pre><code>winget install Helm.Helm\n</code></pre> <p>Assuming you have Snap or Snapcraft installed, here is the command to install Helm:</p> <pre><code>sudo snap install helm --classic\n</code></pre> <p>Assuming you have a Linux distribution that supports the Advanced Packaging Tool (APT) and it is installed, here is the command to install Helm:</p> <p>Chained Command: <pre><code>curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null && sudo apt-get install apt-transport-https --yes && echo \"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main\" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list && sudo apt-get update\nsudo apt-get install helm\n</code></pre></p> <p>Individual Command: <pre><code>curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null\n</code></pre> <pre><code>sudo apt-get install apt-transport-https --yes\n</code></pre> <pre><code>echo \"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main\" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list\n</code></pre> <pre><code>sudo apt-get update\n</code></pre> <pre><code>sudo apt-get install helm\n</code></pre></p> <p>Assuming you have Chocolatey installed, here is the command to install Helm: <pre><code>choco install kubernetes-helm\n</code></pre></p> <p>Assuming you have Scoop installed, here is the command to install Helm: <pre><code>scoop install helm\n</code></pre></p> <p>Assuming you have a Linux distribution that supports the Dandified YUM (DNF) or Yellowdog Updater Modified (YUM) and it is installed, here is the command to install Helm:</p> <pre><code>sudo dnf install helm\n</code></pre>"}]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.