Run binary installation on k8s cluster

kube_run(
  bioc_version,
  image_name,
  volume_mount_path = "/host/",
  exclude_pkgs = character()
)

Arguments

bioc_version

character(), bioconductor bioc_version number, e.g 3.12 or 3.13

image_name

character(), name of the image for which binaries are being built

volume_mount_path

character(), path to volume mount

exclude_pkgs

character(), list of packages to exclude

Examples

if (FALSE) {

kube_run(bioc_version = '3.14',
         image_name = 'bioconductor_docker',
         volume_mount_path = '/host/',
         exclude_pkgs = c('canceR'))
}