mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 15:39:02 +00:00
[reverse-proxy] minor fix to not chomp of left whitspace (#1570)
This commit is contained in:
parent
2a11166887
commit
16accfa8c7
@ -1,6 +1,6 @@
|
||||
---
|
||||
apiVersion: v2
|
||||
version: 2.3.2
|
||||
version: 2.3.3
|
||||
description: Creates ingress reverse-proxies for external hosts with minimum boilerplate
|
||||
name: reverse-proxy
|
||||
appVersion: 1.2.0
|
||||
@ -21,5 +21,5 @@ dependencies:
|
||||
version: 4.4.2
|
||||
annotations:
|
||||
artifacthub.io/changes: |-
|
||||
- kind: changed
|
||||
description: Upgraded `common` chart dependency to version 4.4.2
|
||||
- kind: fixed
|
||||
description: Minor bug fix to not trim whitespace for endpoint objects
|
||||
|
@ -95,7 +95,7 @@ N/A
|
||||
|
||||
## Changelog
|
||||
|
||||
### Version 2.3.2
|
||||
### Version 2.3.3
|
||||
|
||||
#### Added
|
||||
|
||||
@ -103,11 +103,11 @@ N/A
|
||||
|
||||
#### Changed
|
||||
|
||||
* Upgraded `common` chart dependency to version 4.4.2
|
||||
N/A
|
||||
|
||||
#### Fixed
|
||||
|
||||
N/A
|
||||
* Fixed template to not trim whitespace for the endpoint object
|
||||
|
||||
### Older versions
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
{{- include "common.values.setup" . -}}
|
||||
{{- range .Values.instances }}
|
||||
{{- if or ( not ( hasKey . "enabled" ) ) .enabled }}
|
||||
{{- if .ip -}}
|
||||
{{- if .ip }}
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Endpoints
|
||||
|
Loading…
Reference in New Issue
Block a user