Skip to content

Commit

Permalink
[raw] add raw
Browse files Browse the repository at this point in the history
  • Loading branch information
jouve committed May 17, 2023
1 parent 3a5024f commit ca905ce
Show file tree
Hide file tree
Showing 7 changed files with 73 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ helm repo add jouve https://jouve.github.io/charts/

# charts

| chart | description |
| ------------------------------------ | ------------------------------------------------------------------------------------------------------------ |
| [jouve/mailpit](charts/mailpit) | Deploy [mailpit](https://github.com/axllent/mailpit): An email and SMTP testing tool with API for developers |
| [jouve/postgresql](charts/postgresql) | Deploy postgresql using [cloudnative-pg](https://cloudnative-pg.io/) operator |
| chart | description |
| ------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| [jouve/mailpit](charts/mailpit) | Deploy [mailpit](https://github.com/axllent/mailpit): An email and SMTP testing tool with API for developers |
| [jouve/postgresql](charts/postgresql) | Deploy postgresql using [cloudnative-pg](https://cloudnative-pg.io/) operator |
| [jouve/raw](charts/raw) | Deploy a list of Kubernetes resources as a release with [bitnami/common](https://github.com/bitnami/charts/tree/main/bitnami/common) as a dependency.|
23 changes: 23 additions & 0 deletions charts/raw/.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/
6 changes: 6 additions & 0 deletions charts/raw/Chart.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.3.0
digest: sha256:11bbe86be64062d37b725f4dbc909aba3585b4976624ee9d27522366d3f956ea
generated: "2023-05-13T00:19:33.301099989+02:00"
9 changes: 9 additions & 0 deletions charts/raw/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: v2
name: raw
version: 0.1.0
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
tags:
- bitnami-common
version: 2.x.x
20 changes: 20 additions & 0 deletions charts/raw/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# raw

Deploy a list of Kubernetes resources as a release.

It is inspired by the `extraDeploy` of [bitnami charts](https://github.com/bitnami/charts/)
and includes [bitnami/common](https://github.com/bitnami/charts/tree/main/bitnami/common) as a dependency.

## usage

```console
helm repo add jouve https://jouve.github.io/charts/
```

## Parameters

### Common parameters

| Name | Description | Value |
| ------------- | ------------------------------------------------- | ----- |
| `extraDeploy` | Array of extra objects to deploy with the release | `[]` |
4 changes: 4 additions & 0 deletions charts/raw/templates/extra-list.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{{- range .Values.extraDeploy }}
---
{{ include "common.tplvalues.render" (dict "value" . "context" $) }}
{{- end }}
6 changes: 6 additions & 0 deletions charts/raw/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## @section Common parameters
##

## @param extraDeploy Array of extra objects to deploy with the release
##
extraDeploy: []

0 comments on commit ca905ce

Please sign in to comment.