Skip to content

Commit 0fdc9d7

Browse files
committed
Name HTTP port for the OpenFaaS gateway
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 5bb7c6b commit 0fdc9d7

19 files changed

+144
-114
lines changed

chart/openfaas/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
description: Enable Kubernetes as a backend for OpenFaaS (Functions as a Service)
33
name: openfaas
4-
version: 5.1.3
4+
version: 5.1.4
55
sources:
66
- https://github.com/openfaas/faas
77
- https://github.com/openfaas/faas-netes

chart/openfaas/templates/gateway-external-svc.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,13 @@ metadata:
1717
spec:
1818
type: {{ .Values.serviceType }}
1919
ports:
20-
- port: 8080
20+
- name: http
21+
port: 8080
2122
protocol: TCP
2223
targetPort: 8080
2324
{{- if contains "NodePort" .Values.serviceType }}
2425
nodePort: {{ .Values.gateway.nodePort }}
2526
{{- end }}
2627
selector:
2728
app: gateway
28-
{{- end }}
29+
{{- end }}

chart/openfaas/templates/gateway-svc.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ metadata:
1212
spec:
1313
type: ClusterIP
1414
ports:
15-
- port: 8080
15+
- name: http
16+
port: 8080
1617
targetPort: http
1718
protocol: TCP
18-
name: http
1919
selector:
2020
app: gateway

cloud/gateway-lb.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ metadata:
77
app: gateway
88
spec:
99
ports:
10-
- port: 8080
10+
- name: http
11+
port: 8080
1112
protocol: TCP
1213
targetPort: 8080
1314
nodePort: 31112

docs/index.yaml

Lines changed: 118 additions & 93 deletions
Large diffs are not rendered by default.

docs/kafka-connector-0.3.0.tgz

0 Bytes
Binary file not shown.

docs/openfaas-5.1.4.tgz

14.3 KB
Binary file not shown.

yaml/alertmanager-dep.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

yaml/gateway-external-svc.yml

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

yaml/gateway-svc.yml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)