Skip to content

Commit ea878a8

Browse files
provide the ability to deploy extra objects (#42)
1 parent 3e274c1 commit ea878a8

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

charts/localstack/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ annotations:
22
category: Infrastructure
33
apiVersion: v2
44
appVersion: latest
5-
version: 0.3.5
5+
version: 0.3.6
66
name: localstack
77
description: LocalStack - a fully functional local AWS cloud stack
88
type: application

charts/localstack/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ The following table lists the configurable parameters of the Localstack chart an
4848
|------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------|
4949
| `nameOverride` | String to partially override common.names.fullname | `nil` |
5050
| `fullnameOverride` | String to fully override common.names.fullname | `nil` |
51+
| `extraDeploy` | Extra objects to deploy (value evaluated as a template) | `[]` |
5152

5253
### Localstack common parameters
5354

@@ -135,6 +136,7 @@ When raising a pull request with a fix or new feature, please make sure to:
135136

136137
## Change Log
137138

139+
* v0.3.6: Add the ability to deploy extra objects
138140
* v0.3.5: Add namespace variable to metadata of resources, fix enableStartupScripts check to properly mount the config map volume
139141
* v0.3.4: Fix volume mounts exclusion and tests
140142
* v0.3.3: Fix ingress, annotation defaults, and pathType in chart config
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{{- range .Values.extraDeploy }}
2+
---
3+
{{ include "common.tplvalues.render" (dict "value" . "context" $) }}
4+
{{- end }}

charts/localstack/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ imagePullSecrets: []
1212
nameOverride: ""
1313
fullnameOverride: ""
1414

15+
## @param extraDeploy Extra objects to deploy (value evaluated as a template)
16+
##
17+
extraDeploy: []
18+
1519
serviceAccount:
1620
# Specifies whether a service account should be created
1721
create: true

0 commit comments

Comments
 (0)