This is an automated email from the ASF dual-hosted git repository. kocolosk pushed a commit to branch update-ingress-spec in repository https://gitbox.apache.org/repos/asf/couchdb-helm.git
commit ed3ffb39ab86013f52b7611b6c9d317c4bcbefea Author: William Bartholomew <[email protected]> AuthorDate: Sat Jan 8 12:39:18 2022 -0800 Use v1 instead of v1beta for Ingress Ingress has been available in the v1 API since Kubernetes 1.19, and as of 1.21 is no longer in the v1beta API. --- couchdb/Chart.yaml | 1 + couchdb/README.md | 2 +- couchdb/templates/ingress.yaml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/couchdb/Chart.yaml b/couchdb/Chart.yaml index 6f51480..c5898d9 100644 --- a/couchdb/Chart.yaml +++ b/couchdb/Chart.yaml @@ -11,6 +11,7 @@ keywords: - nosql home: https://couchdb.apache.org/ sources: + - https://github.com/apache/couchdb-helm - https://github.com/apache/couchdb-docker maintainers: - name: kocolosk diff --git a/couchdb/README.md b/couchdb/README.md index 3f9642b..6cb285a 100644 --- a/couchdb/README.md +++ b/couchdb/README.md @@ -23,7 +23,7 @@ $ helm install couchdb/couchdb \ ## Prerequisites - Kubernetes 1.9+ with Beta APIs enabled -- Ingress requires Kubernetes 1.14+ +- Ingress requires Kubernetes 1.19+ ## Installing the Chart diff --git a/couchdb/templates/ingress.yaml b/couchdb/templates/ingress.yaml index c547847..02b03bb 100644 --- a/couchdb/templates/ingress.yaml +++ b/couchdb/templates/ingress.yaml @@ -2,7 +2,7 @@ {{- $serviceName := include "couchdb.fullname" . -}} {{- $servicePort := .Values.service.externalPort -}} {{- $path := .Values.ingress.path | quote -}} -apiVersion: networking.k8s.io/v1beta1 +apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: {{ template "couchdb.fullname" . }}
