24 lines
459 B
YAML
24 lines
459 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: ipfs-service
|
|
namespace: default
|
|
annotations:
|
|
meta.helm.sh/release-name: fp
|
|
meta.helm.sh/release-namespace: default
|
|
labels:
|
|
app.kubernetes.io/managed-by: {{ .Values.managedBy }}
|
|
spec:
|
|
selector:
|
|
app.kubernetes.io/name: ipfs
|
|
ports:
|
|
- name: gateway
|
|
protocol: TCP
|
|
port: 8080
|
|
targetPort: 8080
|
|
- name: api
|
|
protocol: TCP
|
|
port: 5001
|
|
targetPort: 5001
|
|
|