Skip to content

Commit

Permalink
TLS
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau-lilly committed Oct 16, 2023
1 parent f47f0db commit 668b3b7
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 18 deletions.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Deprecate `seconds_exit` (https://github.com/wlandau/crew/issues/125, @shikokuchuo).
* Deprecate `seconds_interval` (https://github.com/wlandau/crew/issues/131).
* Add a new `slurm_partition` argument the SLURM controller and launcher (#24, @kkmann).
* Turn on automatic TLS encryption by default.

# crew.cluster 0.1.2

Expand Down
2 changes: 1 addition & 1 deletion R/crew_controller_lsf.R
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ crew_controller_lsf <- function(
workers = 1L,
host = NULL,
port = NULL,
tls = crew::crew_tls(),
tls = crew::crew_tls(mode = "automatic"),
tls_enable = NULL,
tls_config = NULL,
seconds_interval = 0.25,
Expand Down
2 changes: 1 addition & 1 deletion R/crew_controller_pbs.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ crew_controller_pbs <- function(
workers = 1L,
host = NULL,
port = NULL,
tls = crew::crew_tls(),
tls = crew::crew_tls(mode = "automatic"),
tls_enable = NULL,
tls_config = NULL,
seconds_interval = 0.25,
Expand Down
2 changes: 1 addition & 1 deletion R/crew_controller_sge.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ crew_controller_sge <- function(
workers = 1L,
host = NULL,
port = NULL,
tls = crew::crew_tls(),
tls = crew::crew_tls(mode = "automatic"),
tls_enable = NULL,
tls_config = NULL,
seconds_interval = 0.25,
Expand Down
2 changes: 1 addition & 1 deletion R/crew_controller_slurm.R
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ crew_controller_slurm <- function(
workers = 1L,
host = NULL,
port = NULL,
tls = crew::crew_tls(),
tls = crew::crew_tls(mode = "automatic"),
tls_enable = NULL,
tls_config = NULL,
seconds_interval = 0.25,
Expand Down
2 changes: 1 addition & 1 deletion R/crew_launcher_cluster.R
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ crew_launcher_cluster <- function(
reset_options = FALSE,
garbage_collection = FALSE,
launch_max = 5L,
tls = crew::crew_tls(),
tls = crew::crew_tls(mode = "automatic"),
verbose = FALSE,
command_submit = "",
command_delete = "",
Expand Down
2 changes: 1 addition & 1 deletion R/crew_launcher_lsf.R
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ crew_launcher_lsf <- function(
reset_options = FALSE,
garbage_collection = FALSE,
launch_max = 5L,
tls = crew::crew_tls(),
tls = crew::crew_tls(mode = "automatic"),
verbose = FALSE,
command_submit = as.character(Sys.which("bsub")),
command_delete = as.character(Sys.which("bkill")),
Expand Down
2 changes: 1 addition & 1 deletion R/crew_launcher_pbs.R
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ crew_launcher_pbs <- function(
reset_options = FALSE,
garbage_collection = FALSE,
launch_max = 5L,
tls = crew::crew_tls(),
tls = crew::crew_tls(mode = "automatic"),
verbose = FALSE,
command_submit = as.character(Sys.which("qsub")),
command_delete = as.character(Sys.which("qdel")),
Expand Down
2 changes: 1 addition & 1 deletion R/crew_launcher_sge.R
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ crew_launcher_sge <- function(
reset_options = FALSE,
garbage_collection = FALSE,
launch_max = 5L,
tls = crew::crew_tls(),
tls = crew::crew_tls(mode = "automatic"),
verbose = FALSE,
command_submit = as.character(Sys.which("qsub")),
command_delete = as.character(Sys.which("qdel")),
Expand Down
2 changes: 1 addition & 1 deletion R/crew_launcher_slurm.R
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ crew_launcher_slurm <- function(
reset_options = FALSE,
garbage_collection = FALSE,
launch_max = 5L,
tls = crew::crew_tls(),
tls = crew::crew_tls(mode = "automatic"),
verbose = FALSE,
command_submit = as.character(Sys.which("sbatch")),
command_delete = as.character(Sys.which("scancel")),
Expand Down
2 changes: 1 addition & 1 deletion man/crew_controller_lsf.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_controller_pbs.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_controller_sge.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_controller_slurm.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_launcher_cluster.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_launcher_lsf.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_launcher_pbs.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_launcher_sge.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/crew_launcher_slurm.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 668b3b7

Please sign in to comment.