Skip to content

Commit b6d55fc

Browse files
authored
Give the Service default port (5984) a name so that it is not ambiguous if service.extraPorts are used. (#156)
1 parent fa32ff8 commit b6d55fc

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

couchdb/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
name: couchdb
3-
version: 4.5.4
3+
version: 4.5.5
44
appVersion: 3.3.3
55
description: A database featuring seamless multi-master sync, that scales from
66
big data to mobile, with an intuitive HTTP/JSON API and designed for

couchdb/NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# NEWS
22

3+
## 4.5.5
4+
5+
- Give the default port on the CouchDB `Service` a name so that `service.extraPorts` can be used properly.
6+
37
## 4.5.4
48

59
- Expose `extraPorts` and `service.extraPorts` to allow specifying arbitrary ports to be exposed from the CouchDB pods

couchdb/templates/service.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ metadata:
1818
spec:
1919
ports:
2020
- port: {{ .Values.service.externalPort }}
21+
name: couchdb
2122
protocol: TCP
2223
targetPort: {{ .Values.service.targetPort }}
2324
{{ with .Values.service.extraPorts }}

0 commit comments

Comments
 (0)