Skip to content

Commit

Permalink
feat: add meta chart for piniped
Browse files Browse the repository at this point in the history
  • Loading branch information
Romain DARY - merlin committed Nov 19, 2021
1 parent 076c821 commit 5c56834
Show file tree
Hide file tree
Showing 9 changed files with 63 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:
with:
version: v3.4.0

- name: Add dependency chart repos
run: |
helm repo add merlindorin https://merlindorin.github.io/charts
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.2.1
with:
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
Charts
======
======

Helm chart created mainly for personal use or with a pending contribution.
23 changes: 23 additions & 0 deletions charts/pinniped/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
9 changes: 9 additions & 0 deletions charts/pinniped/Chart.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
dependencies:
- name: pinniped-supervisor
repository: https://merlindorin.github.io/charts
version: 0.1.1
- name: pinniped-concierge
repository: https://merlindorin.github.io/charts
version: 0.1.1
digest: sha256:2174c9db9952cf8b51ff4b84f6938d3504314b94433698b2cc776d2062578fe8
generated: "2021-11-19T15:01:50.647081+01:00"
18 changes: 18 additions & 0 deletions charts/pinniped/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
apiVersion: v2
name: pinniped
description: A Meta Pinniped Helm chart for Kubernetes
type: application

version: 0.1.1

dependencies:
- condition: supervisor.enabled
alias: supervisor
name: pinniped-supervisor
version: 0.1.1
repository: https://merlindorin.github.io/charts
- condition: concierge.enabled
alias: concierge
name: pinniped-concierge
version: 0.1.1
repository: https://merlindorin.github.io/charts
Binary file not shown.
Binary file not shown.
4 changes: 4 additions & 0 deletions charts/pinniped/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
supervisor:
enabled: false
concierge:
enabled: false
2 changes: 2 additions & 0 deletions ct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ remote: origin
target-branch: main
chart-dirs:
- charts
chart-repos:
- merlindorin=https://merlindorin.github.io/charts
helm-extra-args: --timeout 600s

0 comments on commit 5c56834

Please sign in to comment.