You are viewing documentation for Flux version: 2.0
Version 2.0 of the documentation is no longer actively maintained. The site that you are currently viewing is an archived snapshot. For up-to-date documentation, see the latest version.
Image update automation API reference
Packages:
image.toolkit.fluxcd.io/v1beta1
Package v1beta1 contains API types for the image API group, version v1beta1. The types here are concerned with automated updates to git, based on metadata from OCI image registries gathered by the image-reflector-controller. v1alpha2 did some rearrangement from v1alpha1 to make room for future enhancements; v1beta1 does not change the schema from v1alpha2.
Resource Types:CommitSpec
(Appears on: GitSpec)
CommitSpec specifies how to commit changes to the git repository
| Field | Description |
|---|---|
authorCommitUser | Author gives the email and optionally the name to use as the author of commits. |
signingKeySigningKey | (Optional) SigningKey provides the option to sign commits with a GPG key |
messageTemplatestring | (Optional) MessageTemplate provides a template for the commit message, into which will be interpolated the details of the change made. |
CommitUser
(Appears on: CommitSpec)
| Field | Description |
|---|---|
namestring | (Optional) Name gives the name to provide when making a commit. |
emailstring | Email gives the email to provide when making a commit. |
CrossNamespaceSourceReference
(Appears on: ImageUpdateAutomationSpec)
CrossNamespaceSourceReference contains enough information to let you locate the typed Kubernetes resource object at cluster level.
| Field | Description |
|---|---|
apiVersionstring | (Optional) API version of the referent. |
kindstring | Kind of the referent. |
namestring | Name of the referent. |
namespacestring | (Optional) Namespace of the referent, defaults to the namespace of the Kubernetes resource object that contains the reference. |
GitCheckoutSpec
(Appears on: GitSpec)
| Field | Description |
|---|---|
refSource /v1.GitRepositoryRef | Reference gives a branch, tag or commit to clone from the Git repository. |
GitSpec
(Appears on: ImageUpdateAutomationSpec)
| Field | Description |
|---|---|
checkoutGitCheckoutSpec | (Optional) Checkout gives the parameters for cloning the git repository,
ready to make changes. If not present, the |
commitCommitSpec | Commit specifies how to commit to the git repository. |
pushPushSpec | (Optional) Push specifies how and where to push commits made by the
automation. If missing, commits are pushed (back) to
|
ImageUpdateAutomation
ImageUpdateAutomation is the Schema for the imageupdateautomations API
| Field | Description | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
metadataKubernetes meta/v1.ObjectMeta | Refer to the Kubernetes API documentation for the fields of the
metadata field. | ||||||||||
specImageUpdateAutomationSpec |
| ||||||||||
statusImageUpdateAutomationStatus |
ImageUpdateAutomationSpec
(Appears on: ImageUpdateAutomation)
ImageUpdateAutomationSpec defines the desired state of ImageUpdateAutomation
| Field | Description |
|---|---|
sourceRefCrossNamespaceSourceReference | SourceRef refers to the resource giving access details to a git repository. |
gitGitSpec | (Optional) GitSpec contains all the git-specific definitions. This is technically optional, but in practice mandatory until there are other kinds of source allowed. |
intervalKubernetes meta/v1.Duration | Interval gives an lower bound for how often the automation run should be attempted. |
updateUpdateStrategy | Update gives the specification for how to update the files in the repository. This can be left empty, to use the default value. |
suspendbool | (Optional) Suspend tells the controller to not run this automation, until it is unset (or set to false). Defaults to false. |
ImageUpdateAutomationStatus
(Appears on: ImageUpdateAutomation)
ImageUpdateAutomationStatus defines the observed state of ImageUpdateAutomation
| Field | Description |
|---|---|
lastAutomationRunTimeKubernetes meta/v1.Time | (Optional) LastAutomationRunTime records the last time the controller ran this automation through to completion (even if no updates were made). |
lastPushCommitstring | (Optional) LastPushCommit records the SHA1 of the last commit made by the controller, for this automation object |
lastPushTimeKubernetes meta/v1.Time | (Optional) LastPushTime records the time of the last pushed change. |
observedGenerationint64 | (Optional) |
conditions[]Kubernetes meta/v1.Condition | (Optional) |
ReconcileRequestStatusgithub.com/fluxcd/pkg/apis/meta.ReconcileRequestStatus | (Members of |
PushSpec
(Appears on: GitSpec)
PushSpec specifies how and where to push commits.
| Field | Description |
|---|---|
branchstring | Branch specifies that commits should be pushed to the branch
named. The branch is created using |
SigningKey
(Appears on: CommitSpec)
SigningKey references a Kubernetes secret that contains a GPG keypair
| Field | Description |
|---|---|
secretRefgithub.com/fluxcd/pkg/apis/meta.LocalObjectReference | SecretRef holds the name to a secret that contains a ‘git.asc’ key corresponding to the ASCII Armored file containing the GPG signing keypair as the value. It must be in the same namespace as the ImageUpdateAutomation. |
UpdateStrategy
(Appears on: ImageUpdateAutomationSpec)
UpdateStrategy is a union of the various strategies for updating the Git repository. Parameters for each strategy (if any) can be inlined here.
| Field | Description |
|---|---|
strategyUpdateStrategyName | Strategy names the strategy to be used. |
pathstring | (Optional) Path to the directory containing the manifests to be updated. Defaults to ‘None’, which translates to the root path of the GitRepositoryRef. |
UpdateStrategyName
(string alias)
(Appears on: UpdateStrategy)
UpdateStrategyName is the type for names that go in .update.strategy. NB the value in the const immediately below.
This page was automatically generated with gen-crd-api-reference-docs