mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 07:59:02 +00:00
[gollum] Fix error with multiple additionalArgs (#1238)
This commit is contained in:
parent
3320a2a6aa
commit
b898048c9e
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: latest
|
appVersion: latest
|
||||||
description: Gollum is a simple wiki system built on top of Git
|
description: Gollum is a simple wiki system built on top of Git
|
||||||
name: gollum
|
name: gollum
|
||||||
version: 3.0.1
|
version: 3.0.2
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- gollum
|
- gollum
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# gollum
|
# gollum
|
||||||
|
|
||||||
![Version: 3.0.1](https://img.shields.io/badge/Version-3.0.1-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
|
![Version: 3.0.2](https://img.shields.io/badge/Version-3.0.2-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
|
||||||
|
|
||||||
Gollum is a simple wiki system built on top of Git
|
Gollum is a simple wiki system built on top of Git
|
||||||
|
|
||||||
@ -94,6 +94,10 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [3.0.2]
|
||||||
|
|
||||||
|
- Fix `additionalArgs` templating so that more than one extra argument can be supplied.
|
||||||
|
|
||||||
### [3.0.0]
|
### [3.0.0]
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
@ -9,6 +9,10 @@ All notable changes to this application Helm chart will be documented in this fi
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
### [3.0.2]
|
||||||
|
|
||||||
|
- Fix `additionalArgs` templating so that more than one extra argument can be supplied.
|
||||||
|
|
||||||
### [3.0.0]
|
### [3.0.0]
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
|
@ -11,7 +11,9 @@ args:
|
|||||||
- "--ref"
|
- "--ref"
|
||||||
- {{ (required "gollum.gitBranch is required but not set" .Values.gollum.gitBranch) }}
|
- {{ (required "gollum.gitBranch is required but not set" .Values.gollum.gitBranch) }}
|
||||||
{{ with .Values.gollum.additionalArgs }}
|
{{ with .Values.gollum.additionalArgs }}
|
||||||
{{- . | toYaml }}
|
{{ range . }}
|
||||||
|
- {{ . | toYaml }}
|
||||||
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
initContainers:
|
initContainers:
|
||||||
|
Loading…
Reference in New Issue
Block a user