-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplay.yml
More file actions
35 lines (35 loc) · 814 Bytes
/
play.yml
File metadata and controls
35 lines (35 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
apiVersion: v1
kind: Pod
metadata:
labels:
app: sphinx-podman-desktop
name: sphinx-podman-desktop
spec:
containers:
- command:
- sphinx-autobuild
- --host
- 0.0.0.0
- /mnt/docs/source
- /mnt/docs/build
image: ghcr.io/rgaiacs/sphinx-doc:main
name: sphinx
ports:
- containerPort: 8000
hostPort: 8000
volumeMounts:
- mountPath: /mnt/docs
name: docs
- mountPath: /mnt/docs/build
name: build
volumes:
- hostPath:
# This is the path in the host machine running Kubernetes or Podman.
# When using WSL2, the Windows C disk is mounted into /mnt/c.
path: ./
type: Directory
name: docs
- emptyDir:
sizeLimit: 100Mi
name: build