9.2 KiB
Image update automation API reference
Packages:
image.toolkit.fluxcd.io/v1alpha1
Package v1alpha1 contains API types for the image v1alpha1 API group. The types here are concerned with automated updates to git, based on metadata from OCI image registries gathered by the image-reflector-controller.
Resource Types:CommitSpec
(Appears on: ImageUpdateAutomationSpec)
CommitSpec specifies how to commit changes to the git repository
| Field | Description |
|---|---|
authorNamestring |
AuthorName gives the name to provide when making a commit |
authorEmailstring |
AuthorEmail gives the email to provide when making a commit |
messageTemplatestring |
(Optional)
MessageTemplate provides a template for the commit message, into which will be interpolated the details of the change made. |
GitCheckoutSpec
(Appears on: ImageUpdateAutomationSpec)
| Field | Description |
|---|---|
gitRepositoryRefKubernetes core/v1.LocalObjectReference |
GitRepositoryRef refers to the resource giving access details to a git repository to update files in. |
branchstring |
(Optional)
Branch gives the branch to clone from the git repository. If missing, it will be left to default; be aware this may give indeterminate results. |
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 |
|---|---|
checkoutGitCheckoutSpec |
Checkout gives the parameters for cloning the git repository, ready to make changes. |
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 |
commitCommitSpec |
Commit specifies how to commit to the git repo |
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). |
observedGenerationint64 |
(Optional) |
conditions[]Kubernetes meta/v1.Condition |
(Optional) |
ReconcileRequestStatusgithub.com/fluxcd/pkg/apis/meta.ReconcileRequestStatus |
(Members of |
SettersStrategy
(Appears on: UpdateStrategy)
SettersStrategy specifies how to use kyaml setters to update the git repository.
| Field | Description |
|---|---|
paths[]string |
(Optional)
Paths gives all paths that should be subject to updates using
setters. If missing, the path |
UpdateStrategy
(Appears on: ImageUpdateAutomationSpec)
UpdateStrategy is a union of the various strategies for updating the git repository.
| Field | Description |
|---|---|
settersSettersStrategy |
(Optional)
Setters if present means update workloads using setters, via fields marked in the files themselves. |
This page was automatically generated with gen-crd-api-reference-docs