golang-http-header/deployment.yaml
Kris Crawford c7250311cf
All checks were successful
package-builder / build (push) Successful in 1m59s
go-builder / build (push) Successful in 35s
Testing multi-stage build and single file docker image
2024-06-21 17:38:01 -04:00

41 lines
615 B
YAML

apiVersion: v1
kind: Namespace
metadata:
name: golang
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: http-header
labels:
app: golang
spec:
replicas: 2
selector:
matchLabels:
app: golang
template:
metadata:
labels:
app: golang
spec:
containers:
- name: http-header
image: git.kcrawford.net/kcrawford/golang-http-header:0.0.3
ports:
- containerPort: 8000
---
apiVersion: v1
kind: Service
metadata:
name: go-frontend
spec:
selector:
app: golang
ports:
- protocol: TCP
port: 80
targetPort: 8000