Skip to content

Commit

Permalink
Merge pull request #62 from foomo/blankValues
Browse files Browse the repository at this point in the history
feat: add values to templates
  • Loading branch information
franklinkim authored Feb 5, 2025
2 parents eb8f686 + 87dc373 commit 7fbbb0d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/blank/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ annotations:
- name: Chart Source
url: https://github.com/foomo/helm-charts/tree/main/charts/blank
version: 0.1.0
appVersion: 0.1.0
version: 0.1.1
appVersion: 0.1.1
3 changes: 2 additions & 1 deletion charts/blank/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# blank

![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)
![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.1](https://img.shields.io/badge/AppVersion-0.1.1-informational?style=flat-square)

Blank Resource Chart

Expand All @@ -25,3 +25,4 @@ Blank Resource Chart
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| templates | object | `{}` | Custom templates to inject |
| templatesValues | object | `{}` | Custom values to inject into templates |
7 changes: 7 additions & 0 deletions charts/blank/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@
"required": [],
"title": "templates",
"type": "object"
},
"templatesValues": {
"additionalProperties": true,
"description": "Custom values to inject into templates",
"required": [],
"title": "templatesValues",
"type": "object"
}
},
"required": [],
Expand Down
8 changes: 8 additions & 0 deletions charts/blank/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,11 @@ namespaceOverride: ''
# -- Custom templates to inject
# @section -- General
templates: {}

# @schema
# type: object
# additionalProperties: true
# @schema
# -- Custom values to inject into templates
# @section -- General
templatesValues: {}

0 comments on commit 7fbbb0d

Please sign in to comment.