6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-12-12 14:17:46 +00:00

Fix WEB_PROXY docs in k8s quickstart

WEB_PROXY=true is not automatically setup during k8s quickstart, user
should define this configuration parameter manually.
This commit is contained in:
Régis Behmo 2019-06-23 10:35:38 +02:00
parent e04f42ec1a
commit 7a89e3ae70

View File

@ -54,7 +54,7 @@ Tutor relies on `cert-manager <https://docs.cert-manager.io/>`_ to generate TLS
kubectl label namespace cert-manager certmanager.k8s.io/disable-validation=true kubectl label namespace cert-manager certmanager.k8s.io/disable-validation=true
kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v0.8.0/cert-manager.yaml kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v0.8.0/cert-manager.yaml
If you decide to enable HTTPS certificates, you will also have to set ``WEB_PROXY=true`` in the platform configuration, because the SSL/TLS termination will not occur in the Nginx container, but in the Ingress controller. This parameter will automatically be set during quickstart; you can also do it manually with:: If you decide to enable HTTPS certificates, you will also have to set ``WEB_PROXY=true`` in the platform configuration, because the SSL/TLS termination will not occur in the Nginx container, but in the Ingress controller. To do so, run::
tutor config save --set WEB_PROXY=true tutor config save --set WEB_PROXY=true