mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-17 18:45:15 +00:00
334f3e720e
Missing features: - https certificates - xqueue - lms/cms workers Moreover, we scalability issues due to the uploaded file storage in the lms/cms. To address this issue we need to develop the MinIO plugin so that it becomes compatible with Open edX. Close #126 #179 #187
22 lines
573 B
Diff
22 lines
573 B
Diff
---
|
|
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: minio-client/init
|
|
labels:
|
|
app.kubernetes.io/component: script
|
|
app.kubernetes.io/name: minio-client/init
|
|
spec:
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/name: minio-client/init
|
|
spec:
|
|
restartPolicy: Never
|
|
containers:
|
|
- name: minio-client
|
|
image: {{ MINIO_DOCKER_REGISTRY }}{{ MINIO_DOCKER_IMAGE_CLIENT }}
|
|
command: ["/bin/sh", "-e", "-c"]
|
|
args:
|
|
- |
|
|
{{ include_plugin_script("minio", "minio-client", "init")|indent(12) }}
|