View Source Helmex.Install (Helmex v0.0.1)

Helm Install

install a chart

Link to this section Summary

Link to this section Functions

Link to this function

install(helm, name, chart, opts \\ [])

View Source
@spec install(
  helm :: Helmex.Helm.t(),
  name :: binary(),
  chart :: binary(),
  opts :: keyword()
) ::
  Helmex.Helm.t()

add a chart repository

Available options:

OptionType
:atomicflag
:ca_file:value
:cert_filevalue
:create_namespaceflag only
:dependency_updateflag only
:descriptionvalue
:develflag
:disable_openapi_validationflag
:dry_runflag
:generate_name:value
:insecure_skip_tls_verifyflag only
:name_templatevalue
:no_hooksflag only
:output:value,
:password:value
:repo:value
:set:value
:timeoutvalue
:usernamevalue
:values:value
:verifyflag only
:version:value
:waitflag only
:wait_for_jobsflag only

examples

Examples

iex> Helmex.init(kubeconfig: "/path/to/kube/config")
|> Helmex.install("mysql", "bitnami/mysql")
|> Helmex.call()