This repository was archived by the owner on Jul 13, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +19
-10
lines changed Expand file tree Collapse file tree 5 files changed +19
-10
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ apiVersion: v2
2
2
name : mailtrain
3
3
description : Runs mailtrain in your kubernetes cluster
4
4
type : application
5
- version : 1.2.3
5
+ version : 2.0.0
6
6
maintainers :
7
7
- name : morremeyer
8
-
Original file line number Diff line number Diff line change 1
1
# mailtrain
2
2
3
- ![ Version: 1.2.3 ] ( https://img.shields.io/badge/Version-1.2.3 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
3
+ ![ Version: 2.0.0 ] ( https://img.shields.io/badge/Version-2.0.0 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
4
4
5
5
Runs mailtrain in your kubernetes cluster
6
6
7
7
## Maintainers
8
8
9
9
| Name | Email | Url |
10
10
| ---- | ------ | --- |
11
- | morremeyer
| < [email protected] > | |
11
+ | morremeyer | | |
12
+
13
+ ## Upgrading
14
+
15
+ See [ the upgrading instructions] ( UPGRADING.md ) for upgrades with breaking changes.
12
16
13
17
## Values
14
18
Original file line number Diff line number Diff line change 7
7
{{ template "chart.maintainersSection" . }}
8
8
{{ template "chart.sourcesSection" . }}
9
9
{{ template "chart.requirementsSection" . }}
10
+
11
+ ## Upgrading
12
+
13
+ See [the upgrading instructions](UPGRADING.md) for upgrades with breaking changes.
14
+
10
15
{{ template "chart.valuesSection" . }}
Original file line number Diff line number Diff line change
1
+ # Upgrading
2
+
3
+ ## 1.2.3 to 2.0.0
4
+
5
+ ### Kubernetes Version
6
+
7
+ If you set ` ingress.enabled: true ` , this chart is only compatible with Kubernetes 1.21 and newer.
Original file line number Diff line number Diff line change 1
1
{{- if .Values.ingress.enabled -}}
2
2
{{- $fullName := include "mailtrain.fullname" . -}}
3
3
{{- $svcPort := .Values.service.port -}}
4
- {{- if .Capabilities.APIVersions.Has "networking.k8s.io/v1" }}
5
4
apiVersion : networking.k8s.io/v1
6
- {{- else if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}}
7
- apiVersion : networking.k8s.io/v1beta1
8
- {{- else -}}
9
- apiVersion : extensions/v1beta1
10
- {{- end }}
11
5
kind : Ingress
12
6
metadata :
13
7
name : {{ $fullName }}
You can’t perform that action at this time.
0 commit comments