13 lines
231 B
YAML
13 lines
231 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: communitarian-api
|
|
namespace: "{{ .namespace }}"
|
|
spec:
|
|
selector:
|
|
component: api
|
|
ports:
|
|
- port: {{ .apiPort }}
|
|
targetPort: {{ .apiPort }}
|
|
protocol: TCP
|
|
name: http |