forked from kubernetes-retired/kubefed
-
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.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## Generate helm chart artifact and repo index | ||
|
||
```bash | ||
helm package charts/kubefed/ --version 0.1.0-rc6-patch | ||
mv kubefed-0.1.0-rc6-patch.tgz charts/ | ||
helm repo index charts/ --url https://github.com/filcloud/kubefed/releases/download/v0.1.0-rc6-patch --merge charts/index.yaml | ||
``` | ||
|
||
Then, you should release `v0.1.0-rc6-patch` on `https://github.com/filcloud/kubefed`, with uploaded `kubefed-0.1.0-rc6-patch.tgz`. | ||
|
||
## Install helm chart | ||
|
||
```bash | ||
helm repo add kubefed-charts https://raw.githubusercontent.com/filcloud/kubefed/filcloud/charts | ||
|
||
kubectl create namespace kubefed-system | ||
|
||
helm install kubefed kubefed-charts/kubefed --version 0.1.0-rc6-patch --namespace kubefed-system --set controllermanager.tag=canary | ||
|
||
kubectl -n kubefed-system get all | ||
``` |