FluxConfigurationGitRepository

data class FluxConfigurationGitRepository(val httpsCaCertBase64: String? = null, val httpsKeyBase64: String? = null, val httpsUser: String? = null, val localAuthReference: String? = null, val referenceType: String, val referenceValue: String, val sshKnownHostsBase64: String? = null, val sshPrivateKeyBase64: String? = null, val syncIntervalInSeconds: Int? = null, val timeoutInSeconds: Int? = null, val url: String)

Constructors

Link copied to clipboard
constructor(httpsCaCertBase64: String? = null, httpsKeyBase64: String? = null, httpsUser: String? = null, localAuthReference: String? = null, referenceType: String, referenceValue: String, sshKnownHostsBase64: String? = null, sshPrivateKeyBase64: String? = null, syncIntervalInSeconds: Int? = null, timeoutInSeconds: Int? = null, url: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Specifies the Base64-encoded HTTPS certificate authority contents used to access git private git repositories over HTTPS.

Link copied to clipboard
val httpsKeyBase64: String? = null

Specifies the Base64-encoded HTTPS personal access token or password that will be used to access the repository.

Link copied to clipboard
val httpsUser: String? = null

Specifies the plaintext HTTPS username used to access private git repositories over HTTPS.

Link copied to clipboard

Specifies the name of a local secret on the Kubernetes cluster to use as the authentication secret rather than the managed or user-provided configuration secrets. It must be between 1 and 63 characters. It can contain only lowercase letters, numbers, and hyphens (-). It must start and end with a lowercase letter or number.

Link copied to clipboard

Specifies the source reference type for the GitRepository object. Possible values are branch, commit, semver and tag.

Link copied to clipboard

Specifies the source reference value for the GitRepository object.

Link copied to clipboard

Specifies the Base64-encoded known_hosts value containing public SSH keys required to access private git repositories over SSH.

Link copied to clipboard

Specifies the Base64-encoded SSH private key in PEM format.

Link copied to clipboard

Specifies the interval at which to re-reconcile the cluster git repository source with the remote. Defaults to 600.

Link copied to clipboard
val timeoutInSeconds: Int? = null

Specifies the maximum time to attempt to reconcile the cluster git repository source with the remote. Defaults to 600.

Link copied to clipboard
val url: String

Specifies the URL to sync for the flux configuration git repository. It must start with http://, https://, git@ or ssh://.