-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c57618f
commit 04f9dc4
Showing
9 changed files
with
46 additions
and
10 deletions.
There are no files selected for viewing
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
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
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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Helm | ||
|
||
## Collection and Packaging | ||
|
||
### Helm (by Cloud Native Computing Foundation) | ||
|
||
[hauler/helm/helm](https://rancher-airgap.s3.amazonaws.com/0.8.0/hauler/helm/helm) - provides the binary for Helm. | ||
|
||
**Note:** The [Releases](https://github.com/zackbradys/rancher-airgap/releases) page contain the most up-to-date assets. | ||
|
||
## Across the Airgap | ||
|
||
## Loading and Distribution |
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
### Set Variables | ||
export vHelm=3.12.0 | ||
|
||
### Setup Working Directory | ||
rm -rf /opt/rancher/hauler/helm | ||
mkdir -p /opt/rancher/hauler/helm | ||
cd /opt/rancher/hauler/helm | ||
|
||
### Install Helm | ||
### https://github.com/helm/helm/ | ||
curl -#OL https://get.helm.sh/helm-v${vHelm}-linux-amd64.tar.gz | ||
tar -xf helm-v${vHelm}-linux-amd64.tar.gz && mv linux-amd64/* . && rm -rf linux-amd64 | ||
|
||
### Compress Helm | ||
tar -czvf /opt/rancher/hauler/rancher-airgap-helm.tar.zst . |