22 lines
458 B
YAML
22 lines
458 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: documentation-site
|
||
|
namespace: default
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: static-site
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: static-site
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: documentation-site
|
||
|
image: git.clortox.com/infrastructure/gluttony-cluster/documentation:0.0.1
|
||
|
ports:
|
||
|
- name: http
|
||
|
containerPort: 80
|
||
|
protocol: TCP
|