ReleaseStatus

data class ReleaseStatus(val appVersion: String? = null, val chart: String? = null, val name: String? = null, val namespace: String? = null, val revision: Int? = null, val status: String, val version: String? = null)

Constructors

Link copied to clipboard
constructor(appVersion: String? = null, chart: String? = null, name: String? = null, namespace: String? = null, revision: Int? = null, status: String, version: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val appVersion: String? = null

The version number of the application being deployed.

Link copied to clipboard
val chart: String? = null

The name of the chart.

Link copied to clipboard
val name: String? = null

Name is the name of the release.

Link copied to clipboard
val namespace: String? = null

Namespace is the kubernetes namespace of the release.

Link copied to clipboard
val revision: Int? = null

Version is an int32 which represents the version of the release.

Link copied to clipboard

Status of the release.

Link copied to clipboard
val version: String? = null

A SemVer 2 conformant version string of the chart.