argo/apps/portfolio/base/deployment.yaml
2024-10-19 12:29:41 -04:00

24 lines
501 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
imagePullSecrets:
- name: registry-credentials
restartPolicy: Always