29 lines
No EOL
467 B
YAML
29 lines
No EOL
467 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: jumpingGameFrontendService
|
|
namespace: jumpingGame
|
|
spec:
|
|
selector:
|
|
app: jumpingGameFrontend
|
|
ports:
|
|
- protocol: TCP
|
|
port: 80
|
|
targetPort: 8080
|
|
type: ClusterIP
|
|
|
|
---
|
|
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: jumpingGameBackendService
|
|
namespace: jumpingGame
|
|
spec:
|
|
selector:
|
|
app: jumpingGameBackend
|
|
ports:
|
|
- protocol: TCP
|
|
port: 8080
|
|
targetPort: 8080
|
|
type: ClusterIP |