Explorar o código

YARN-10063. Add container-executor arguments --http/--https to usage. Contributed by Siddharth Ahuja

(cherry picked from commit 2214005c0f11955b2c50c4d2d4bd14947dd797ba)
Wilfred Spiegelenburg %!s(int64=5) %!d(string=hai) anos
pai
achega
618a9208f7

+ 13 - 3
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/native/container-executor/impl/main.c

@@ -71,7 +71,7 @@ static void display_usage(FILE *stream) {
       "            initialize container:  %2d appid tokens nm-local-dirs "
       "nm-log-dirs cmd app...\n"
       "            launch container:      %2d appid containerid workdir "
-      "container-script tokens pidfile nm-local-dirs nm-log-dirs resources ",
+      "container-script tokens http-option pidfile nm-local-dirs nm-log-dirs resources ",
       INITIALIZE_CONTAINER, LAUNCH_CONTAINER);
 
   if(is_tc_support_enabled()) {
@@ -80,10 +80,15 @@ static void display_usage(FILE *stream) {
     fputs("\n", stream);
   }
 
+  fputs(
+      "                                      where http-option is one of:\n"
+      "                                      --http\n"
+      "                                      --https keystorepath truststorepath\n", stream);
+
   de = is_docker_support_enabled() ? enabled : disabled;
   fprintf(stream,
-      "%11s launch docker container:      %2d appid containerid workdir "
-      "container-script tokens pidfile nm-local-dirs nm-log-dirs "
+      "%11s launch docker container:%2d appid containerid workdir "
+      "container-script tokens http-option pidfile nm-local-dirs nm-log-dirs "
       "docker-command-file resources ", de, LAUNCH_DOCKER_CONTAINER);
 
   if(is_tc_support_enabled()) {
@@ -92,6 +97,11 @@ static void display_usage(FILE *stream) {
     fputs("\n", stream);
   }
 
+  fputs(
+      "                                      where http-option is one of:\n"
+      "                                      --http\n"
+      "                                      --https keystorepath truststorepath\n", stream);
+
   fprintf(stream,
       "            signal container:      %2d container-pid signal\n"
       "            delete as user:        %2d relative-path\n"