32 lines
670 B
YAML
32 lines
670 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: static-site
|
|
namespace: default
|
|
labels:
|
|
app: static-site
|
|
app.kubernetes.io/part-of: static-site
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: static-site
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: static-site
|
|
app.kubernetes.io/part-of: static-site
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: harbor.apps.kopikopi.com.ru/drone/test:latest
|
|
ports:
|
|
- containerPort: 80
|
|
volumeMounts:
|
|
- name: html
|
|
mountPath: /usr/share/nginx/html
|
|
volumes:
|
|
- name: html
|
|
configMap:
|
|
name: static-site-html
|