golang-http-header/deployment.yaml
Kris Crawford ceb759b262
Some checks failed
package-builder / build (push) Successful in 4s
go-builder / build (push) Failing after 4s
Testing docker build pipeline
2024-04-04 19:01:59 -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.5
ports:
- containerPort: 8000
---
apiVersion: v1
kind: Service
metadata:
name: go-frontend
spec:
selector:
app: golang
ports:
- protocol: TCP
port: 80
targetPort: 8000