Get connection configuration of H2O cluster on Kubernetes.

h2osteam.get_h2o_kubernetes_cluster(conn, name)

Arguments

conn

The SteamConnection object obtained by h2osteam.login.

name

The name of the H2O kubernetes cluster.

Value

H2O cluster connection configuration that can be passed to h2o.connect(config = config).

Examples

if (FALSE) { conn <- h2osteam.login(url = "https://steam.h2o.ai:9555", username = "user01", password = "token-here") config <- h2osteam.get_h2o_kubernetes_cluster(conn, "my-cluster") h2o.connect(config = config) }