argo/apps/portfolio/base/deployment.yaml
2024-10-20 01:27:37 -04:00

25 lines
535 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
imagePullPolicy: Always
name: portfolio-site
ports:
- containerPort: 8080
name: http
imagePullSecrets:
- name: registry-credentials
restartPolicy: Always