mirror of
https://github.com/ChristianLight/tutor.git
synced 2025-01-23 13:38:24 +00:00
3b7c1c25c5
This deployment of Kubernetes does not support all features. Close #116.
21 lines
367 B
YAML
21 lines
367 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: forum
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: forum
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: forum
|
|
spec:
|
|
containers:
|
|
- name: forum
|
|
image: regis/openedx-forum:hawthorn
|
|
ports:
|
|
- containerPort: 4567
|
|
imagePullPolicy: Always
|