michals-silly-game-frontend/k8/deployment.yaml

42 lines
953 B
YAML
Raw Normal View History

2025-04-15 11:09:28 +00:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: silly-game-frontend-deployment
namespace: silly-game
spec:
replicas: 1
selector:
matchLabels:
app: silly-game-frontend
template:
metadata:
labels:
app: silly-game-frontend
spec:
containers:
- name: silly-game-frontend
2025-04-15 11:35:40 +00:00
image: forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/devfw-cicd/michals-silly-game-frontend:latest
2025-04-15 11:09:28 +00:00
ports:
- containerPort: 80
2025-04-15 13:50:17 +00:00
# volumeMounts:
# - name: config-volume
# mountPath: /app/src/environments/environment.ts
# subPath: environment.ts
# volumes:
# - name: config-volume
# configMap:
# name: silly-game-config
2025-04-15 11:09:28 +00:00
---
apiVersion: v1
kind: Service
metadata:
2025-04-15 14:00:23 +00:00
name: silly-game-frontend-service
2025-04-15 11:09:28 +00:00
namespace: silly-game
spec:
selector:
2025-04-15 13:50:17 +00:00
app: silly-game-frontend
2025-04-15 11:09:28 +00:00
ports:
2025-04-15 11:56:46 +00:00
- port: 80
targetPort: 80