mirror of
https://github.com/amkartashov/gf-k8s.git
synced 2026-01-11 18:09:44 +00:00
68 lines
No EOL
1.2 KiB
YAML
68 lines
No EOL
1.2 KiB
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: wiki
|
|
labels:
|
|
app: wiki
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: wiki
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: wiki
|
|
spec:
|
|
hostname: wiki
|
|
volumes:
|
|
- name: data
|
|
hostPath:
|
|
path: /data/wiki
|
|
type: DirectoryOrCreate
|
|
containers:
|
|
- name: wiki
|
|
image: requarks/wiki:2.4
|
|
imagePullPolicy: IfNotPresent
|
|
env:
|
|
- name: CONFIG_FILE
|
|
value: /data/config.yml
|
|
ports:
|
|
- containerPort: 3000
|
|
name: http
|
|
volumeMounts:
|
|
- mountPath: /data
|
|
name: data
|
|
---
|
|
kind: Service
|
|
apiVersion: v1
|
|
metadata:
|
|
name: wiki
|
|
spec:
|
|
selector:
|
|
app: wiki
|
|
ports:
|
|
- name: http
|
|
targetPort: http
|
|
port: 80
|
|
---
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: wiki
|
|
spec:
|
|
tls:
|
|
- secretName: san-gorilych-ru-tls
|
|
hosts:
|
|
- wiki.gorilych.ru
|
|
rules:
|
|
- host: wiki.gorilych.ru
|
|
http:
|
|
paths:
|
|
- pathType: ImplementationSpecific
|
|
backend:
|
|
service:
|
|
name: wiki
|
|
port:
|
|
name: http |