-
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.
Merge pull request #10 from NCKU-CCS/helm
Add init page of helm
- Loading branch information
Showing
4 changed files
with
86 additions
and
1 deletion.
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
Empty file.
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,75 @@ | ||
# The package manager for kubernetes | ||
|
||
## Three Big Concepts | ||
- A Chart is a Helm package. | ||
- A Repository is the place where charts can be collected and shared. It's like Perl's CPAN archive or the Fedora Package Database, but for Kubernetes packages.- A Release is an instance of a chart running in a Kubernetes cluster. | ||
|
||
## Quickstart | ||
|
||
install helm | ||
|
||
helm search | ||
``` | ||
helm search hub | ||
helm search repo | ||
``` | ||
|
||
Initialize a Helm Chart Repository | ||
|
||
``` | ||
helm repo add bitnami https://charts.bitnami.com/bitnami | ||
``` | ||
|
||
## helm tips | ||
|
||
### install 加上 --dry-run | ||
|
||
|
||
|
||
## helm features | ||
- pure client tools (v3) | ||
- w/o tiller | ||
- don't need helm init | ||
- 3-way merge | ||
- helm template | ||
- values.yaml | ||
- dependency | ||
|
||
## hub | ||
- more then helm | ||
|
||
## repo | ||
|
||
## charts | ||
|
||
### chart hooks | ||
- (pre/post)-(install/delete/upgrade/rollback) / test | ||
|
||
|
||
## helm plugins | ||
https://helm.sh/docs/community/related/#helm-plugins | ||
### helm secrets / diff / git | ||
https://www.youtube.com/watch?v=FriVNkaEU8Q | ||
sops | ||
|
||
### | ||
|
||
## web ui | ||
- kubeapps | ||
- https://kubeapps.dev/docs/latest/tutorials/getting-started/#step-1-install-kubeapps | ||
- kubectl port-forward --address=100.115.92.200 -n kubeapps svc/kubeapps 8080:80 | ||
- helm-dashboard | ||
|
||
|
||
## tilt / werf | ||
|
||
## flux / argocd | ||
- helm operator | ||
|
||
|
||
## keptn | ||
|
||
## GitOps | ||
|
||
|
||
## argo workflow / |