mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-02 23:39:03 +00:00
[reverse-proxy] Fix ingressclass generation (#1327)
This commit is contained in:
parent
bab0ff6126
commit
ca6bd37216
@ -1,5 +1,5 @@
|
||||
apiVersion: v2
|
||||
version: 2.1.0
|
||||
version: 2.1.1
|
||||
description: Creates ingress reverse-proxies for external hosts with minimum boilerplate
|
||||
name: reverse-proxy
|
||||
appVersion: 1.2.0
|
||||
|
@ -1,6 +1,6 @@
|
||||
# reverse-proxy
|
||||
|
||||
![Version: 2.1.0](https://img.shields.io/badge/Version-2.1.0-informational?style=flat-square) ![AppVersion: 1.2.0](https://img.shields.io/badge/AppVersion-1.2.0-informational?style=flat-square)
|
||||
![Version: 2.1.1](https://img.shields.io/badge/Version-2.1.1-informational?style=flat-square) ![AppVersion: 1.2.0](https://img.shields.io/badge/AppVersion-1.2.0-informational?style=flat-square)
|
||||
|
||||
Creates ingress reverse-proxies for external hosts with minimum boilerplate
|
||||
|
||||
@ -98,6 +98,11 @@ N/A
|
||||
All notable changes to this application Helm chart will be documented in this file but does not include changes from our common library. To read those click [here](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common#changelog).
|
||||
|
||||
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).
|
||||
### [2.1.1]
|
||||
|
||||
#### Changed
|
||||
|
||||
- Bugfix for ingressclass
|
||||
|
||||
### [2.0.0]
|
||||
|
||||
|
@ -8,6 +8,11 @@
|
||||
All notable changes to this application Helm chart will be documented in this file but does not include changes from our common library. To read those click [here](https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common#changelog).
|
||||
|
||||
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).
|
||||
### [2.1.1]
|
||||
|
||||
#### Changed
|
||||
|
||||
- Bugfix for ingressclass
|
||||
|
||||
### [2.0.0]
|
||||
|
||||
|
@ -15,7 +15,7 @@ metadata:
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- if .ingress.ingressClassName }}
|
||||
ingressClassName: {{ .ingressClassName }}
|
||||
ingressClassName: {{ .ingress.ingressClassName }}
|
||||
{{- end }}
|
||||
{{- if .ingress.tls }}
|
||||
tls:
|
||||
|
Loading…
Reference in New Issue
Block a user