argo/apps/portfolio/base/deployment.yaml
2024-10-16 18:41:07 -04:00

22 lines
440 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: portfolio
spec:
replicas: 1
selector:
matchLabels:
app: portfolio
template:
metadata:
annotations:
labels:
app: portfolio
spec:
containers:
- image: registry.int.nc.landry.land/portfolio-site
name: portfolio-site
ports:
- containerPort: 8080
name: http
restartPolicy: Always