34 lines
550 B
YAML
34 lines
550 B
YAML
|
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.10bit.link/kcrawford/golang-http-header:0.0.4
|
||
|
ports:
|
||
|
- containerPort: 8000
|
||
|
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: go-frontend
|
||
|
spec:
|
||
|
selector:
|
||
|
app: golang
|
||
|
ports:
|
||
|
- protocol: TCP
|
||
|
port: 80
|
||
|
targetPort: 8000
|