forked from argoproj/argo-helm
-
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
8 changed files
with
79 additions
and
38 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 |
---|---|---|
@@ -1,18 +1,5 @@ | ||
* [ ] I have update the chart version in `Chart.yaml` following Semantic Versioning. | ||
* [ ] All new values are backwards compatible and/or have sensible default. | ||
* [ ] I have installed the chart myself and it works. | ||
|
||
E.g. for Argo Workflows: | ||
|
||
``` | ||
helm install charts/argo | ||
argo version | ||
``` | ||
Checklist: | ||
|
||
E.g. for Argo CD: | ||
|
||
``` | ||
helm install charts/argo-cd --namespace argocd | ||
kubectl port-forward svc/argocd-server -n argocd 8080:443 & | ||
argocd version | ||
``` | ||
* [ ] I have update the chart version in `Chart.yaml` following Semantic Versioning. | ||
* [ ] Any new values are backwards compatible and/or have sensible default. | ||
* [ ] I have followed the testing instructions in the [contributing guide](https://github.com/argoproj/argo-helm/blob/master/CONTRIBUTING.md). |
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,61 @@ | ||
# Contributing | ||
|
||
Argo Helm is a collection of **community maintained** charts. Therefore we rely on you to test your changes sufficiently. | ||
|
||
## Testing Argo Workflows Changes | ||
|
||
Minimally: | ||
|
||
``` | ||
helm install charts/argo -n argo | ||
argo version | ||
``` | ||
|
||
Follow this instructions for running a hello world workflow. | ||
|
||
## Testing Argo CD Changes | ||
|
||
Clean-up: | ||
|
||
``` | ||
helm delete argo-cd --purge | ||
kubectl delete crd -l app.kubernetes.io/part-of=argo-cd | ||
``` | ||
|
||
Minimally: | ||
|
||
``` | ||
helm install charts/argo-cd --namespace argocd -n argo-cd | ||
kubectl port-forward svc/argocd-server -n argocd 8080:443 | ||
``` | ||
|
||
In a new terminal: | ||
|
||
``` | ||
argocd version | ||
# reset password to 'Password1!' | ||
kubectl -n argocd patch secret argocd-secret \ | ||
-p '{"stringData": { | ||
"admin.password": "$2a$10$hDj12Tw9xVmvybSahN1Y0.f9DZixxN8oybyA32Uy/eqWklFU4Mo8O", | ||
"admin.passwordMtime": "'$(date +%FT%T%Z)'" | ||
}}' | ||
argocd login localhost:8080 --username admin --password 'Password1!' | ||
``` | ||
|
||
Create and sync app: | ||
|
||
``` | ||
argocd app create guestbook --dest-namespace default --dest-server https://kubernetes.default.svc --path guestbook --project default --repo https://github.com/argoproj/argocd-example-apps.git | ||
argocd app sync guestbook | ||
``` | ||
|
||
## Publishing Changes | ||
|
||
To push changes use following script: | ||
|
||
``` | ||
GIT_PUSH=true ./scripts/publish.sh | ||
``` | ||
|
||
Script generates tar file for each chart in `charts` directory and push changes to `gh-pages` branch. | ||
Write access to https://github.com/argoproj/argo-helm.git is required to publish changes. |
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,8 +1,9 @@ | ||
owners: | ||
- alexec | ||
- alexmt | ||
- jessesuen | ||
|
||
approvers: | ||
- alexec | ||
- alexmt | ||
- jessesuen | ||
- merenbach |
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,19 +1,7 @@ | ||
# Argo Helm Charts | ||
|
||
Repository contains helm charts for http://argoproj.io/ projects. Helm charts repository is hosted using Github pages | ||
and can be added using following command: | ||
Argo Helm is a collection of **community maintained** charts for http://argoproj.io/ projects. the charts can be added using following command: | ||
|
||
``` | ||
helm repo add argo https://argoproj.github.io/argo-helm | ||
``` | ||
|
||
## Publishing changes | ||
|
||
To push changes use following script: | ||
|
||
``` | ||
GIT_PUSH=true ./scripts/publish.sh | ||
``` | ||
|
||
Script generates tar file for each chart in `charts` directory and push changes to `gh-pages` branch. | ||
Write access to https://github.com/argoproj/argo-helm.git is required to publish changes. |
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,3 @@ | ||
# Argo CI Chart | ||
|
||
This is a **community maintained** chart. |
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