GitRepositoryDefinitionResponse

data class GitRepositoryDefinitionResponse(val httpsCACert: String? = null, val httpsUser: String? = null, val localAuthRef: String? = null, val repositoryRef: RepositoryRefDefinitionResponse? = null, val sshKnownHosts: String? = null, val syncIntervalInSeconds: Double? = null, val timeoutInSeconds: Double? = null, val url: String? = null)

Parameters to reconcile to the GitRepository source kind type.

Constructors

Link copied to clipboard
constructor(httpsCACert: String? = null, httpsUser: String? = null, localAuthRef: String? = null, repositoryRef: RepositoryRefDefinitionResponse? = null, sshKnownHosts: String? = null, syncIntervalInSeconds: Double? = null, timeoutInSeconds: Double? = null, url: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val httpsCACert: String? = null

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

Link copied to clipboard
val httpsUser: String? = null

Plaintext HTTPS username used to access private git repositories over HTTPS

Link copied to clipboard
val localAuthRef: String? = null

Name of a local secret on the Kubernetes cluster to use as the authentication secret rather than the managed or user-provided configuration secrets.

Link copied to clipboard

The source reference for the GitRepository object.

Link copied to clipboard
val sshKnownHosts: String? = null

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

Link copied to clipboard

The interval at which to re-reconcile the cluster git repository source with the remote.

Link copied to clipboard

The maximum time to attempt to reconcile the cluster git repository source with the remote.

Link copied to clipboard
val url: String? = null

The URL to sync for the flux configuration git repository.