mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-05 21:07:50 +00:00
Merge remote-tracking branch 'origin/master' into nightly
This commit is contained in:
commit
c19880d859
@ -4,6 +4,11 @@ Note: Breaking changes between versions are indicated by "💥".
|
||||
|
||||
## Unreleased
|
||||
|
||||
## v13.1.8 (2022-03-18)
|
||||
|
||||
- [Bugfix] Fix "evalsymlink failure" during `k8s quickstart` (#611).
|
||||
- [Bugfix] Fix "TypeError: upgrade() got an unexpected keyword argument 'non_interactive'" during `local upgrade`.
|
||||
|
||||
## v13.1.7 (2022-03-17)
|
||||
|
||||
- [Bugfix] Fix dockerize on arm64 by switching to the [powerman/dockerize](https://github.com/powerman/dockerize) fork (#591).
|
||||
|
@ -13,7 +13,7 @@ Out of the box, Tutor does not create any user for you. You will want to create
|
||||
Importing a demo course
|
||||
-----------------------
|
||||
|
||||
To get a glimpse of the possibilities of Open edX, we recommend you import the `official demo test course <https://github.com/openedx/demo-test-course>`__. Tutor provides a :ref:`simple command for that <democourse>`.
|
||||
To get a glimpse of the possibilities of Open edX, we recommend you import the `official demo test course <https://github.com/openedx/edx-demo-course>`__. Tutor provides a :ref:`simple command for that <democourse>`.
|
||||
|
||||
Making Open edX look better
|
||||
---------------------------
|
||||
|
@ -2,7 +2,7 @@ import os
|
||||
|
||||
# Increment this version number to trigger a new release. See
|
||||
# docs/tutor.html#versioning for information on the versioning scheme.
|
||||
__version__ = "13.1.7"
|
||||
__version__ = "13.1.8"
|
||||
|
||||
# The version suffix will be appended to the actual version, separated by a
|
||||
# dash. Use this suffix to differentiate between the actual released version and
|
||||
|
@ -224,6 +224,7 @@ def start(context: Context, names: List[str]) -> None:
|
||||
except exceptions.TutorError:
|
||||
fmt.echo_info("Namespace does not exist: now creating it...")
|
||||
kubectl_apply(
|
||||
context.root,
|
||||
"--wait",
|
||||
"--selector",
|
||||
"app.kubernetes.io/component=namespace",
|
||||
|
@ -80,7 +80,6 @@ Are you sure you want to continue?"""
|
||||
context.invoke(
|
||||
upgrade,
|
||||
from_release=run_upgrade_from_release,
|
||||
non_interactive=non_interactive,
|
||||
)
|
||||
|
||||
click.echo(fmt.title("Interactive platform configuration"))
|
||||
|
Loading…
Reference in New Issue
Block a user