27 lines
575 B
YAML
27 lines
575 B
YAML
|
|
apiVersion: apps/v1
|
||
|
|
kind: Deployment
|
||
|
|
metadata:
|
||
|
|
name: docs
|
||
|
|
labels:
|
||
|
|
app.kubernetes.io/name: docs
|
||
|
|
spec:
|
||
|
|
replicas: 1
|
||
|
|
selector:
|
||
|
|
matchLabels:
|
||
|
|
app.kubernetes.io/name: docs
|
||
|
|
template:
|
||
|
|
metadata:
|
||
|
|
labels:
|
||
|
|
app.kubernetes.io/name: docs
|
||
|
|
spec:
|
||
|
|
imagePullSecrets:
|
||
|
|
- name: forgejo-registry-secret
|
||
|
|
containers:
|
||
|
|
- name: nest-docs
|
||
|
|
image: weaver.mynest.love/the-nest/docs:latest
|
||
|
|
imagePullPolicy: Always
|
||
|
|
ports:
|
||
|
|
- name: http
|
||
|
|
containerPort: 80
|
||
|
|
protocol: TCP
|