You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
377 B
28 lines
377 B
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: backend
|
|
namespace: dev-environment
|
|
spec:
|
|
type: NodePort
|
|
selector:
|
|
app: trialytix
|
|
ports:
|
|
- port: 5100
|
|
targetPort: 5100
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: frontend
|
|
namespace: dev-environment
|
|
spec:
|
|
type: NodePort
|
|
selector:
|
|
app: trialytix
|
|
ports:
|
|
- port: 8100
|
|
targetPort: 8100
|
|
|
|
|