From d81c4b586fc26dead60ffe9830209e4bc9c6dc14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=97=AA=D1=94=CE=BD=CE=B9=CE=B7=20=E1=97=B7=CF=85=D0=BD?= =?UTF-8?q?=CA=9F?= Date: Tue, 16 Feb 2021 00:58:53 -0500 Subject: [PATCH] [common] 3.0.1 (#591) --- charts/common-test/Chart.yaml | 4 ++-- charts/common/CHANGELOG.md | 9 +++++++++ charts/common/Chart.yaml | 12 ++++++------ charts/common/values.yaml | 1 + templates/chart/Chart.yaml | 2 +- 5 files changed, 19 insertions(+), 9 deletions(-) diff --git a/charts/common-test/Chart.yaml b/charts/common-test/Chart.yaml index 89060ed4..9950d0c6 100644 --- a/charts/common-test/Chart.yaml +++ b/charts/common-test/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 name: common-test description: Helper chart to test different use cases of the common library -version: 1.0.3 -kubeVersion: ">=1.16.0" +version: 1.0.4 +kubeVersion: ">=1.16.0-0" keywords: - k8s-at-home - common diff --git a/charts/common/CHANGELOG.md b/charts/common/CHANGELOG.md index 85868d50..3b9434bb 100644 --- a/charts/common/CHANGELOG.md +++ b/charts/common/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. 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.1] + +### Fixed + +- Fixed `kubeVersion` in `Chart.yaml` not working with people running k8s pre-releases +- Added `ingressClassName` to `values.yaml` + ## [3.0.0] ### Changed @@ -109,6 +116,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 This is the last version before starting this changelog. All sorts of cool stuff was changed, but only `git log` remembers what that was :slightly_frowning_face: +[3.0.1]: https://github.com/k8s-at-home/charts/tree/common-3.0.1/charts/common + [3.0.0]: https://github.com/k8s-at-home/charts/tree/common-3.0.0/charts/common [2.5.1]: https://github.com/k8s-at-home/charts/tree/common-2.5.1/charts/common diff --git a/charts/common/Chart.yaml b/charts/common/Chart.yaml index 154dea39..a7dcb12e 100644 --- a/charts/common/Chart.yaml +++ b/charts/common/Chart.yaml @@ -2,12 +2,12 @@ apiVersion: v2 name: common description: Function library for k8s-at-home charts type: library -version: 3.0.0 -kubeVersion: ">=1.16.0" +version: 3.0.1 +kubeVersion: ">=1.16.0-0" keywords: - - k8s-at-home - - common +- k8s-at-home +- common home: https://github.com/k8s-at-home/charts/tree/master/charts/common maintainers: - - name: bjw-s - email: me@bjw-s.dev +- name: bjw-s + email: me@bjw-s.dev diff --git a/charts/common/values.yaml b/charts/common/values.yaml index 07d2b6e0..209d9c43 100644 --- a/charts/common/values.yaml +++ b/charts/common/values.yaml @@ -177,6 +177,7 @@ ingress: # kubernetes.io/ingress.class: nginx # kubernetes.io/tls-acme: "true" labels: {} + # ingressClassName: "nginx" hosts: - host: chart-example.local ## Or a tpl that is evaluated diff --git a/templates/chart/Chart.yaml b/templates/chart/Chart.yaml index cff3d730..9449a8be 100644 --- a/templates/chart/Chart.yaml +++ b/templates/chart/Chart.yaml @@ -3,7 +3,7 @@ appVersion: 1.0.0 description: ${CHARTNAME} helm package name: ${CHARTNAME} version: 1.0.0 -kubeVersion: ">=1.16.0" +kubeVersion: ">=1.16.0-0" keywords: - ${CHARTNAME} home: https://github.com/k8s-at-home/charts/tree/master/charts/${CHARTNAME}