FluxConfigurationBucket

data class FluxConfigurationBucket(val accessKey: String? = null, val bucketName: String, val localAuthReference: String? = null, val secretKeyBase64: String? = null, val syncIntervalInSeconds: Int? = null, val timeoutInSeconds: Int? = null, val tlsEnabled: Boolean? = null, val url: String)

Constructors

Link copied to clipboard
constructor(accessKey: String? = null, bucketName: String, localAuthReference: String? = null, secretKeyBase64: String? = null, syncIntervalInSeconds: Int? = null, timeoutInSeconds: Int? = null, tlsEnabled: Boolean? = null, url: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val accessKey: String? = null

Specifies the plaintext access key used to securely access the S3 bucket.

Link copied to clipboard

Specifies the bucket name to sync from the url endpoint for the flux configuration.

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.

Link copied to clipboard
val secretKeyBase64: String? = null

Specifies the Base64-encoded secret key used to authenticate with the bucket source.

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 tlsEnabled: Boolean? = null

Specify whether to communicate with a bucket using TLS is enabled. Defaults to true.

Link copied to clipboard
val url: String

Specifies the URL to sync for the flux configuration S3 bucket. It must start with http:// or https://.