You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datalab.apache.org by lf...@apache.org on 2021/10/12 12:13:20 UTC

[incubator-datalab] branch DATALAB-2409 updated: [DATALAB-2409]: made keycloak client arguments not required

This is an automated email from the ASF dual-hosted git repository.

lfrolov pushed a commit to branch DATALAB-2409
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git


The following commit(s) were added to refs/heads/DATALAB-2409 by this push:
     new 3c70774  [DATALAB-2409]: made keycloak client arguments not required
3c70774 is described below

commit 3c7077468b205f30f11ef6fdc18e7973a10aa16a
Author: leonidfrolov <fr...@gmail.com>
AuthorDate: Tue Oct 12 15:13:13 2021 +0300

    [DATALAB-2409]: made keycloak client arguments not required
---
 infrastructure-provisioning/scripts/deploy_datalab.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/infrastructure-provisioning/scripts/deploy_datalab.py b/infrastructure-provisioning/scripts/deploy_datalab.py
index 5d22a73..0cafbe6 100644
--- a/infrastructure-provisioning/scripts/deploy_datalab.py
+++ b/infrastructure-provisioning/scripts/deploy_datalab.py
@@ -161,9 +161,9 @@ def build_parser():
                                help='Keycloak auth server URL', required=True)
     required_args.add_argument('--keycloak_realm_name', type=str, help='Keycloak Realm name', required=True)
     required_args.add_argument('--keycloak_client_name', type=str, default='datalab',
-                               help='Keycloak client name', required=True)
+                               help='Keycloak client name')
     required_args.add_argument('--keycloak_client_secret', type=str, default='datalab',
-                               help='Keycloak client secret', required=True)
+                               help='Keycloak client secret')
     required_args.add_argument('--keycloak_user', type=str, default='datalab', help='Keycloak user', required=True)
     required_args.add_argument('--keycloak_user_password', type=str, default='keycloak-user-password',
                                help='Keycloak user password', required=True)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datalab.apache.org
For additional commands, e-mail: commits-help@datalab.apache.org