DigitalOcean.KubernetesCluster.update_node_pool
You're seeing just the function
update_node_pool
, go back to DigitalOcean.KubernetesCluster module for more information.
Link to this function
update_node_pool(cluster_id, node_pool_id, opts)
Specs
update_node_pool(String.t(), String.t(), Keyword.t()) :: DigitalOcean.Operation.t()
Update a node pool for a Kubernetes cluster.
Examples
iex> DigitalOcean.KubernetesCluster.update_node_pool(
...> "bd5f5959-5e1e-4205-a714-a914373942af",
...> "86c9bc8c-b2c3-4d40-8000-b0c7bee27305",
...> name: "frontend",
...> count: 1,
...> tags: ["frontend"],
...> labels: %{
...> service: "frontend",
...> priority: "high"
...> }
...> ) |> DigitalOcean.request()
{ :ok, %DigitalOcean.Response{} }