Skip to content

Commit

Permalink
Add helm-dependency example demonstrating customization of OTS chart
Browse files Browse the repository at this point in the history
  • Loading branch information
jessesuen committed Dec 30, 2018
1 parent 8c06d23 commit 58594ac
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ to explore ArgoCD and GitOps!
| [jsonnet-guestbook](jsonnet-guestbook/) | The guestbook application as a raw jsonnet |
| [kustomize-guestbook](kustomize-guestbook/) | The guestbook application as a kustomize app |
| [pre-post-sync](pre-post-sync/) | Demonstrates Argo CD PreSync and PostSync hooks |
| [helm-dependency](helm-dependency/) | Demonstrates how to customize an OTS (off-the-shelf) helm chart from an upstream repo |
| [blue-green-deploy](blue-green-deploy/) | Demonstrates an Argo CD Sync hook which performs a blue/green deployment |
| [sock-shop](sock-shop/) | A microservices demo application (https://microservices-demo.github.io) |
1 change: 1 addition & 0 deletions helm-dependency/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
name: wordpress
26 changes: 26 additions & 0 deletions helm-dependency/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Helm Dependencies

This example application demonstrates how an OTS (off-the-shelf) helm chart can be retrieved and
pinned to a specific helm sem version from an upstream helm repository, and customized using a custom
values.yaml in the private git repository.

In this example, the wordpress application is pulled from the stable helm repo, and pinned to v5.0.2:

```yaml
dependencies:
- name: wordpress
version: 5.0.2
repository: https://kubernetes-charts.storage.googleapis.com
```
A custom values.yaml is used to customize the parameters of the wordpress helm chart:
```yaml
wordpress:
wordpressPassword: foo
mariadb:
db:
password: bar
rootUser:
password: baz
```
4 changes: 4 additions & 0 deletions helm-dependency/requirements.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dependencies:
- name: wordpress
version: 5.0.2
repository: https://kubernetes-charts.storage.googleapis.com
7 changes: 7 additions & 0 deletions helm-dependency/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
wordpress:
wordpressPassword: foo
mariadb:
db:
password: bar
rootUser:
password: baz

0 comments on commit 58594ac

Please sign in to comment.