Add repo path and push branch to image update cmd
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
committed by
Hidde Beydals
parent
b6a8163dd9
commit
d9331b0c91
@@ -28,19 +28,38 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var createImageUpdateCmd = &cobra.Command{
|
var createImageUpdateCmd = &cobra.Command{
|
||||||
Use: "update <name>",
|
Use: "update [name]",
|
||||||
Short: "Create or update an ImageUpdateAutomation object",
|
Short: "Create or update an ImageUpdateAutomation object",
|
||||||
Long: `The create image update command generates an ImageUpdateAutomation resource.
|
Long: `The create image update command generates an ImageUpdateAutomation resource.
|
||||||
An ImageUpdateAutomation object specifies an automated update to images
|
An ImageUpdateAutomation object specifies an automated update to images
|
||||||
mentioned in YAMLs in a git repository.`,
|
mentioned in YAMLs in a git repository.`,
|
||||||
|
Example: ` # Configure image updates for the main repository created by flux bootstrap
|
||||||
|
flux create image update flux-system \
|
||||||
|
--git-repo-ref=flux-system \
|
||||||
|
--git-repo-path="./clusters/my-cluster" \
|
||||||
|
--checkout-branch=main \
|
||||||
|
--author-name=flux \
|
||||||
|
--author-email=flux@example.com \
|
||||||
|
--commit-template="{{range .Updated.Images}}{{println .}}{{end}}"
|
||||||
|
|
||||||
|
# Configure image updates to push changes to a different branch, if the branch doesn't exists it will be created
|
||||||
|
flux create image update flux-system \
|
||||||
|
--git-repo-ref=flux-system \
|
||||||
|
--git-repo-path="./clusters/my-cluster" \
|
||||||
|
--checkout-branch=main \
|
||||||
|
--push-branch=image-updates \
|
||||||
|
--author-name=flux \
|
||||||
|
--author-email=flux@example.com \
|
||||||
|
--commit-template="{{range .Updated.Images}}{{println .}}{{end}}"
|
||||||
|
`,
|
||||||
RunE: createImageUpdateRun,
|
RunE: createImageUpdateRun,
|
||||||
}
|
}
|
||||||
|
|
||||||
type imageUpdateFlags struct {
|
type imageUpdateFlags struct {
|
||||||
// git checkout spec
|
gitRepoRef string
|
||||||
gitRepoRef string
|
gitRepoPath string
|
||||||
branch string
|
checkoutBranch string
|
||||||
// commit spec
|
pushBranch string
|
||||||
commitTemplate string
|
commitTemplate string
|
||||||
authorName string
|
authorName string
|
||||||
authorEmail string
|
authorEmail string
|
||||||
@@ -50,8 +69,10 @@ var imageUpdateArgs = imageUpdateFlags{}
|
|||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
flags := createImageUpdateCmd.Flags()
|
flags := createImageUpdateCmd.Flags()
|
||||||
flags.StringVar(&imageUpdateArgs.gitRepoRef, "git-repo-ref", "", "the name of a GitRepository resource with details of the upstream git repository")
|
flags.StringVar(&imageUpdateArgs.gitRepoRef, "git-repo-ref", "", "the name of a GitRepository resource with details of the upstream Git repository")
|
||||||
flags.StringVar(&imageUpdateArgs.branch, "branch", "", "the branch to checkout and push commits to")
|
flags.StringVar(&imageUpdateArgs.gitRepoPath, "git-repo-path", "", "path to the directory containing the manifests to be updated, defaults to the repository root")
|
||||||
|
flags.StringVar(&imageUpdateArgs.checkoutBranch, "checkout-branch", "", "the branch to checkout")
|
||||||
|
flags.StringVar(&imageUpdateArgs.pushBranch, "push-branch", "", "the branch to push commits to, defaults to the checkout branch if not specified")
|
||||||
flags.StringVar(&imageUpdateArgs.commitTemplate, "commit-template", "", "a template for commit messages")
|
flags.StringVar(&imageUpdateArgs.commitTemplate, "commit-template", "", "a template for commit messages")
|
||||||
flags.StringVar(&imageUpdateArgs.authorName, "author-name", "", "the name to use for commit author")
|
flags.StringVar(&imageUpdateArgs.authorName, "author-name", "", "the name to use for commit author")
|
||||||
flags.StringVar(&imageUpdateArgs.authorEmail, "author-email", "", "the email to use for commit author")
|
flags.StringVar(&imageUpdateArgs.authorEmail, "author-email", "", "the email to use for commit author")
|
||||||
@@ -69,8 +90,16 @@ func createImageUpdateRun(cmd *cobra.Command, args []string) error {
|
|||||||
return fmt.Errorf("a reference to a GitRepository is required (--git-repo-ref)")
|
return fmt.Errorf("a reference to a GitRepository is required (--git-repo-ref)")
|
||||||
}
|
}
|
||||||
|
|
||||||
if imageUpdateArgs.branch == "" {
|
if imageUpdateArgs.checkoutBranch == "" {
|
||||||
return fmt.Errorf("the Git repository branch is required (--branch)")
|
return fmt.Errorf("the Git repository branch is required (--checkout-branch)")
|
||||||
|
}
|
||||||
|
|
||||||
|
if imageUpdateArgs.authorName == "" {
|
||||||
|
return fmt.Errorf("the author name is required (--author-name)")
|
||||||
|
}
|
||||||
|
|
||||||
|
if imageUpdateArgs.authorEmail == "" {
|
||||||
|
return fmt.Errorf("the author email is required (--author-email)")
|
||||||
}
|
}
|
||||||
|
|
||||||
labels, err := parseLabels()
|
labels, err := parseLabels()
|
||||||
@@ -89,9 +118,11 @@ func createImageUpdateRun(cmd *cobra.Command, args []string) error {
|
|||||||
GitRepositoryRef: meta.LocalObjectReference{
|
GitRepositoryRef: meta.LocalObjectReference{
|
||||||
Name: imageUpdateArgs.gitRepoRef,
|
Name: imageUpdateArgs.gitRepoRef,
|
||||||
},
|
},
|
||||||
Branch: imageUpdateArgs.branch,
|
Branch: imageUpdateArgs.checkoutBranch,
|
||||||
|
},
|
||||||
|
Interval: metav1.Duration{
|
||||||
|
Duration: createArgs.interval,
|
||||||
},
|
},
|
||||||
Interval: metav1.Duration{Duration: createArgs.interval},
|
|
||||||
Commit: autov1.CommitSpec{
|
Commit: autov1.CommitSpec{
|
||||||
AuthorName: imageUpdateArgs.authorName,
|
AuthorName: imageUpdateArgs.authorName,
|
||||||
AuthorEmail: imageUpdateArgs.authorEmail,
|
AuthorEmail: imageUpdateArgs.authorEmail,
|
||||||
@@ -100,6 +131,19 @@ func createImageUpdateRun(cmd *cobra.Command, args []string) error {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if imageUpdateArgs.pushBranch != "" {
|
||||||
|
update.Spec.Push = &autov1.PushSpec{
|
||||||
|
Branch: imageUpdateArgs.pushBranch,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if imageUpdateArgs.gitRepoPath != "" {
|
||||||
|
update.Spec.Update = &autov1.UpdateStrategy{
|
||||||
|
Path: imageUpdateArgs.gitRepoPath,
|
||||||
|
Strategy: autov1.UpdateStrategySetters,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if createArgs.export {
|
if createArgs.export {
|
||||||
return printExport(exportImageUpdate(&update))
|
return printExport(exportImageUpdate(&update))
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,31 @@ An ImageUpdateAutomation object specifies an automated update to images
|
|||||||
mentioned in YAMLs in a git repository.
|
mentioned in YAMLs in a git repository.
|
||||||
|
|
||||||
```
|
```
|
||||||
flux create image update <name> [flags]
|
flux create image update [name] [flags]
|
||||||
|
```
|
||||||
|
|
||||||
|
### Examples
|
||||||
|
|
||||||
|
```
|
||||||
|
# Configure image updates for the main repository created by flux bootstrap
|
||||||
|
flux create image update flux-system \
|
||||||
|
--git-repo-ref=flux-system \
|
||||||
|
--git-repo-path="./clusters/my-cluster" \
|
||||||
|
--checkout-branch=main \
|
||||||
|
--author-name=flux \
|
||||||
|
--author-email=flux@example.com \
|
||||||
|
--commit-template="{{range .Updated.Images}}{{println .}}{{end}}"
|
||||||
|
|
||||||
|
# Configure image updates to push changes to a different branch, if the branch doesn't exists it will be created
|
||||||
|
flux create image update flux-system \
|
||||||
|
--git-repo-ref=flux-system \
|
||||||
|
--git-repo-path="./clusters/my-cluster" \
|
||||||
|
--checkout-branch=main \
|
||||||
|
--push-branch=image-updates \
|
||||||
|
--author-name=flux \
|
||||||
|
--author-email=flux@example.com \
|
||||||
|
--commit-template="{{range .Updated.Images}}{{println .}}{{end}}"
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Options
|
### Options
|
||||||
@@ -17,10 +41,12 @@ flux create image update <name> [flags]
|
|||||||
```
|
```
|
||||||
--author-email string the email to use for commit author
|
--author-email string the email to use for commit author
|
||||||
--author-name string the name to use for commit author
|
--author-name string the name to use for commit author
|
||||||
--branch string the branch to checkout and push commits to
|
--checkout-branch string the branch to checkout
|
||||||
--commit-template string a template for commit messages
|
--commit-template string a template for commit messages
|
||||||
--git-repo-ref string the name of a GitRepository resource with details of the upstream git repository
|
--git-repo-path string path to the directory containing the manifests to be updated, defaults to the repository root
|
||||||
|
--git-repo-ref string the name of a GitRepository resource with details of the upstream Git repository
|
||||||
-h, --help help for update
|
-h, --help help for update
|
||||||
|
--push-branch string the branch to push commits to, defaults to the checkout branch if not specified
|
||||||
```
|
```
|
||||||
|
|
||||||
### Options inherited from parent commands
|
### Options inherited from parent commands
|
||||||
|
|||||||
Reference in New Issue
Block a user