RepositoryOpts

data class RepositoryOpts(val caFile: String? = null, val certFile: String? = null, val keyFile: String? = null, val password: String? = null, val repo: String? = null, val username: String? = null)

Specification defining the Helm chart repository to use.

Constructors

Link copied to clipboard
constructor(caFile: String? = null, certFile: String? = null, keyFile: String? = null, password: String? = null, repo: String? = null, username: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val caFile: String? = null

The Repository's CA File

Link copied to clipboard
val certFile: String? = null

The repository's cert file

Link copied to clipboard
val keyFile: String? = null

The repository's cert key file

Link copied to clipboard
val password: String? = null

Password for HTTP basic authentication

Link copied to clipboard
val repo: String? = null

Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.

Link copied to clipboard
val username: String? = null

Username for HTTP basic authentication