-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(csi-secret-provider-class): intialize chart (#127)
- Loading branch information
Showing
11 changed files
with
133 additions
and
0 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
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,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/ |
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,6 @@ | ||
dependencies: | ||
- name: common | ||
repository: https://charts.adfinis.com | ||
version: 0.0.5 | ||
digest: sha256:9ee68395c06e42a72b7e849e1df7b3be6c658ade9aa4911d195d8e380981f7fb | ||
generated: "2020-12-03T16:06:53.437610587+01:00" |
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,17 @@ | ||
apiVersion: v2 | ||
name: csi-secret-provider-class | ||
description: A Helm chart to create a SecretProviderClass resource | ||
type: application | ||
version: 0.1.0 | ||
appVersion: 0.1.0 | ||
home: https://github.com/adfinis-sygroup/helm-charts/tree/master/charts/csi-secret-provider-class | ||
sources: | ||
- https://github.com/adfinis-sygroup/helm-charts | ||
maintainers: | ||
- name: adfinis-sygroup | ||
email: [email protected] | ||
url: https://adfinis.com | ||
dependencies: | ||
- name: common | ||
repository: https://charts.adfinis.com | ||
version: 0.0.5 |
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,47 @@ | ||
# csi-secret-provider-class | ||
|
||
![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square) | ||
|
||
A Helm chart to create a SecretProviderClass resource | ||
|
||
**Homepage:** <https://github.com/adfinis-sygroup/helm-charts/tree/master/charts/csi-secret-provider-class> | ||
|
||
## Maintainers | ||
This chart is maintained by [Adfinis](https://adfinis.com/?pk_campaign=github&pk_kwd=helm-charts). | ||
|
||
## Source Code | ||
|
||
* <https://github.com/adfinis-sygroup/helm-charts> | ||
|
||
## Requirements | ||
|
||
| Repository | Name | Version | | ||
|------------|------|---------| | ||
| https://charts.adfinis.com | common | 0.0.5 | | ||
|
||
## Values | ||
|
||
| Key | Type | Default | Description | | ||
|-----|------|---------|-------------| | ||
| parameters | object | `{}` | parameters for provider | | ||
| parametersTpl | string | raw values from `parameters` | template to generate parameters | | ||
| provider | string | `nil` | specify secret provider | | ||
| secretObjects | list | `[]` | secretObjects for for SecretProviderClass | | ||
| secretObjectsTpl | string | raw values from `secretObjects` | template to generate secretObjects | | ||
|
||
## About this chart | ||
|
||
Adfinis fights for a software world that is more open, where the quality is | ||
better and where software must be accessible to everyone. This chart | ||
is part of the action behind this commitment. Feel free to | ||
[contact](https://adfinis.com/kontakt/?pk_campaign=github&pk_kwd=helm-charts) | ||
us if you have any questions. | ||
|
||
## License | ||
|
||
This Helm chart is free software: you can redistribute it and/or modify it under the terms | ||
of the GNU Affero General Public License as published by the Free Software Foundation, | ||
version 3 of the License. | ||
|
||
---------------------------------------------- | ||
Autogenerated from chart metadata using [helm-docs v1.4.0](https://github.com/norwoodj/helm-docs/releases/v1.4.0) |
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,5 @@ | ||
provider: dummy | ||
parameters: | ||
foo: bar | ||
secretObjects: | ||
- secretName: test |
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 @@ | ||
The {{ template "common.fullname" . }} SecretProviderClass was installed. |
13 changes: 13 additions & 0 deletions
13
charts/csi-secret-provider-class/templates/secretproviderclass.yaml
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,13 @@ | ||
apiVersion: secrets-store.csi.x-k8s.io/v1alpha1 | ||
kind: SecretProviderClass | ||
{{ template "common.metadata" $ }} | ||
spec: | ||
provider: {{ required "Specify a valid provider." .Values.provider }} | ||
{{- if .Values.parameters }} | ||
parameters: | ||
{{- tpl .Values.parametersTpl . | nindent 4 }} | ||
{{- end }} | ||
{{- if .Values.secretObjects }} | ||
secretObjects: | ||
{{- tpl .Values.secretObjectsTpl . | nindent 4 }} | ||
{{- end }} |
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,16 @@ | ||
# provider -- specify secret provider | ||
provider: ~ | ||
|
||
# parameters -- parameters for provider | ||
parameters: {} | ||
|
||
# parametersTpl -- template to generate parameters | ||
# @default -- raw values from `parameters` | ||
parametersTpl: "{{ .Values.parameters | toYaml }}" | ||
|
||
# secretObjects -- secretObjects for for SecretProviderClass | ||
secretObjects: [] | ||
|
||
# secretObjectsTpl -- template to generate secretObjects | ||
# @default -- raw values from `secretObjects` | ||
secretObjectsTpl: "{{ .Values.secretObjects | toYaml }}" |
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