-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #219 from fluxcd/sample-v1beta1
Provide a sample of v1beta1 ImageUpdateAutomation
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
apiVersion: image.toolkit.fluxcd.io/v1beta1 | ||
kind: ImageUpdateAutomation | ||
metadata: | ||
name: imageupdateautomation-sample | ||
spec: | ||
interval: 5m | ||
sourceRef: | ||
kind: GitRepository # the only valid value, but good practice to be explicit here | ||
name: sample-repo | ||
git: | ||
checkout: | ||
ref: | ||
branch: main | ||
commit: | ||
author: | ||
name: fluxbot | ||
email: fluxbot@example.com | ||
messageTemplate: | | ||
An automated update from FluxBot | ||
[ci skip] | ||
signingKey: | ||
secretRef: | ||
name: git-pgp | ||
push: | ||
branch: auto | ||
update: | ||
strategy: Setters | ||
path: ./cluster/sample |