17 lines
279 B
YAML
17 lines
279 B
YAML
# https://kubernetes.io/docs/concepts/services-networking/service/
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: election
|
|
namespace: vhsmp
|
|
spec:
|
|
selector:
|
|
app: election
|
|
type: ClusterIP
|
|
ports:
|
|
- name: election
|
|
protocol: TCP
|
|
port: 3000
|
|
targetPort: 3000
|
|
|