YARN-10063. Add container-executor arguments --http/--https to usage. Contributed by Siddharth Ahuja
This commit is contained in:
parent
20eec95867
commit
2214005c0f
|
@ -71,7 +71,7 @@ static void display_usage(FILE *stream) {
|
||||||
" initialize container: %2d appid tokens nm-local-dirs "
|
" initialize container: %2d appid tokens nm-local-dirs "
|
||||||
"nm-log-dirs cmd app...\n"
|
"nm-log-dirs cmd app...\n"
|
||||||
" launch container: %2d appid containerid workdir "
|
" 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);
|
INITIALIZE_CONTAINER, LAUNCH_CONTAINER);
|
||||||
|
|
||||||
if(is_tc_support_enabled()) {
|
if(is_tc_support_enabled()) {
|
||||||
|
@ -80,10 +80,15 @@ static void display_usage(FILE *stream) {
|
||||||
fputs("\n", 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;
|
de = is_docker_support_enabled() ? enabled : disabled;
|
||||||
fprintf(stream,
|
fprintf(stream,
|
||||||
"%11s launch docker container:%2d appid containerid workdir "
|
"%11s launch docker container:%2d appid containerid workdir "
|
||||||
"container-script tokens pidfile nm-local-dirs nm-log-dirs "
|
"container-script tokens http-option pidfile nm-local-dirs nm-log-dirs "
|
||||||
"docker-command-file resources ", de, LAUNCH_DOCKER_CONTAINER);
|
"docker-command-file resources ", de, LAUNCH_DOCKER_CONTAINER);
|
||||||
|
|
||||||
if(is_tc_support_enabled()) {
|
if(is_tc_support_enabled()) {
|
||||||
|
@ -92,6 +97,11 @@ static void display_usage(FILE *stream) {
|
||||||
fputs("\n", stream);
|
fputs("\n", stream);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fputs(
|
||||||
|
" where http-option is one of:\n"
|
||||||
|
" --http\n"
|
||||||
|
" --https keystorepath truststorepath\n", stream);
|
||||||
|
|
||||||
fprintf(stream,
|
fprintf(stream,
|
||||||
" signal container: %2d container-pid signal\n"
|
" signal container: %2d container-pid signal\n"
|
||||||
" delete as user: %2d relative-path\n"
|
" delete as user: %2d relative-path\n"
|
||||||
|
|
Loading…
Reference in New Issue