mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-27 11:20:40 -04:00
33 lines
No EOL
627 B
YAML
33 lines
No EOL
627 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: signup-form-deployment
|
|
spec:
|
|
replicas: 3
|
|
selector:
|
|
matchLabels:
|
|
app: signup-form
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: signup-form
|
|
spec:
|
|
containers:
|
|
- name: signup-form
|
|
image: ghcr.io/smiggiddy/odin-codeprojects/signup-form:latest
|
|
ports:
|
|
- containerPort: 80
|
|
imagePullPolicy: IfNotPresent
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: signup-form-service
|
|
spec:
|
|
selector:
|
|
app: signup-form
|
|
type: LoadBalancer
|
|
ports:
|
|
- protocol: TCP
|
|
port: 80
|
|
targetPort: 80 |