Add examples for resuming/suspending multiple objects
Signed-off-by: Rishikesh Nair <alienware505@gmail.com>
This commit is contained in:
@@ -28,7 +28,10 @@ var resumeAlertCmd = &cobra.Command{
|
||||
Long: `The resume command marks a previously suspended Alert resource for reconciliation and waits for it to
|
||||
finish the apply.`,
|
||||
Example: ` # Resume reconciliation for an existing Alert
|
||||
flux resume alert main`,
|
||||
flux resume alert main
|
||||
|
||||
# Resume reconciliation for multiple Alerts
|
||||
flux resume alert main-1 main-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(notificationv1.GroupVersion.WithKind(notificationv1.AlertKind)),
|
||||
RunE: resumeCommand{
|
||||
apiType: alertType,
|
||||
|
||||
@@ -31,7 +31,10 @@ var resumeHrCmd = &cobra.Command{
|
||||
Long: `The resume command marks a previously suspended HelmRelease resource for reconciliation and waits for it to
|
||||
finish the apply.`,
|
||||
Example: ` # Resume reconciliation for an existing Helm release
|
||||
flux resume hr podinfo`,
|
||||
flux resume hr podinfo
|
||||
|
||||
# Resume reconciliation for multiple Helm releases
|
||||
flux resume hr podinfo-1 podinfo-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(helmv2.GroupVersion.WithKind(helmv2.HelmReleaseKind)),
|
||||
RunE: resumeCommand{
|
||||
apiType: helmReleaseType,
|
||||
|
||||
@@ -27,7 +27,10 @@ var resumeImageRepositoryCmd = &cobra.Command{
|
||||
Short: "Resume a suspended ImageRepository",
|
||||
Long: `The resume command marks a previously suspended ImageRepository resource for reconciliation and waits for it to finish.`,
|
||||
Example: ` # Resume reconciliation for an existing ImageRepository
|
||||
flux resume image repository alpine`,
|
||||
flux resume image repository alpine
|
||||
|
||||
# Resume reconciliation for multiple ImageRepositories
|
||||
flux resume image repository alpine-1 alpine-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(imagev1.GroupVersion.WithKind(imagev1.ImageRepositoryKind)),
|
||||
RunE: resumeCommand{
|
||||
apiType: imageRepositoryType,
|
||||
|
||||
@@ -27,7 +27,10 @@ var resumeImageUpdateCmd = &cobra.Command{
|
||||
Short: "Resume a suspended ImageUpdateAutomation",
|
||||
Long: `The resume command marks a previously suspended ImageUpdateAutomation resource for reconciliation and waits for it to finish.`,
|
||||
Example: ` # Resume reconciliation for an existing ImageUpdateAutomation
|
||||
flux resume image update latest-images`,
|
||||
flux resume image update latest-images
|
||||
|
||||
# Resume reconciliation for multiple ImageUpdateAutomations
|
||||
flux resume image update latest-images-1 latest-images-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(autov1.GroupVersion.WithKind(autov1.ImageUpdateAutomationKind)),
|
||||
RunE: resumeCommand{
|
||||
apiType: imageUpdateAutomationType,
|
||||
|
||||
@@ -31,7 +31,10 @@ var resumeKsCmd = &cobra.Command{
|
||||
Long: `The resume command marks a previously suspended Kustomization resource for reconciliation and waits for it to
|
||||
finish the apply.`,
|
||||
Example: ` # Resume reconciliation for an existing Kustomization
|
||||
flux resume ks podinfo`,
|
||||
flux resume ks podinfo
|
||||
|
||||
# Resume reconciliation for multiple Kustomizations
|
||||
flux resume ks podinfo-1 podinfo-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(kustomizev1.GroupVersion.WithKind(kustomizev1.KustomizationKind)),
|
||||
RunE: resumeCommand{
|
||||
apiType: kustomizationType,
|
||||
|
||||
@@ -28,7 +28,10 @@ var resumeReceiverCmd = &cobra.Command{
|
||||
Long: `The resume command marks a previously suspended Receiver resource for reconciliation and waits for it to
|
||||
finish the apply.`,
|
||||
Example: ` # Resume reconciliation for an existing Receiver
|
||||
flux resume receiver main`,
|
||||
flux resume receiver main
|
||||
|
||||
# Resume reconciliation for multiple Receivers
|
||||
flux resume receiver main-1 main-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(notificationv1.GroupVersion.WithKind(notificationv1.ReceiverKind)),
|
||||
RunE: resumeCommand{
|
||||
apiType: receiverType,
|
||||
|
||||
@@ -27,7 +27,10 @@ var resumeSourceBucketCmd = &cobra.Command{
|
||||
Short: "Resume a suspended Bucket",
|
||||
Long: `The resume command marks a previously suspended Bucket resource for reconciliation and waits for it to finish.`,
|
||||
Example: ` # Resume reconciliation for an existing Bucket
|
||||
flux resume source bucket podinfo`,
|
||||
flux resume source bucket podinfo
|
||||
|
||||
# Resume reconciliation for multiple Buckets
|
||||
flux resume source bucket podinfo-1 podinfo-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(sourcev1.GroupVersion.WithKind(sourcev1.BucketKind)),
|
||||
RunE: resumeCommand{
|
||||
apiType: bucketType,
|
||||
|
||||
@@ -29,7 +29,10 @@ var resumeSourceHelmChartCmd = &cobra.Command{
|
||||
Short: "Resume a suspended HelmChart",
|
||||
Long: `The resume command marks a previously suspended HelmChart resource for reconciliation and waits for it to finish.`,
|
||||
Example: ` # Resume reconciliation for an existing HelmChart
|
||||
flux resume source chart podinfo`,
|
||||
flux resume source chart podinfo
|
||||
|
||||
# Resume reconciliation for multiple HelmCharts
|
||||
flux resume source chart podinfo-1 podinfo-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(sourcev1.GroupVersion.WithKind(sourcev1.HelmChartKind)),
|
||||
RunE: resumeCommand{
|
||||
apiType: helmChartType,
|
||||
|
||||
@@ -27,7 +27,10 @@ var resumeSourceGitCmd = &cobra.Command{
|
||||
Short: "Resume a suspended GitRepository",
|
||||
Long: `The resume command marks a previously suspended GitRepository resource for reconciliation and waits for it to finish.`,
|
||||
Example: ` # Resume reconciliation for an existing GitRepository
|
||||
flux resume source git podinfo`,
|
||||
flux resume source git podinfo
|
||||
|
||||
# Resume reconciliation for multiple GitRepositories
|
||||
flux resume source git podinfo-1 podinfo-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(sourcev1.GroupVersion.WithKind(sourcev1.GitRepositoryKind)),
|
||||
RunE: resumeCommand{
|
||||
apiType: gitRepositoryType,
|
||||
|
||||
@@ -27,7 +27,10 @@ var resumeSourceHelmCmd = &cobra.Command{
|
||||
Short: "Resume a suspended HelmRepository",
|
||||
Long: `The resume command marks a previously suspended HelmRepository resource for reconciliation and waits for it to finish.`,
|
||||
Example: ` # Resume reconciliation for an existing HelmRepository
|
||||
flux resume source helm bitnami`,
|
||||
flux resume source helm bitnami
|
||||
|
||||
# Resume reconciliation for multiple HelmRepositories
|
||||
flux resume source helm bitnami-1 bitnami-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(sourcev1.GroupVersion.WithKind(sourcev1.HelmRepositoryKind)),
|
||||
RunE: resumeCommand{
|
||||
apiType: helmRepositoryType,
|
||||
|
||||
@@ -27,7 +27,10 @@ var resumeSourceOCIRepositoryCmd = &cobra.Command{
|
||||
Short: "Resume a suspended OCIRepository",
|
||||
Long: `The resume command marks a previously suspended OCIRepository resource for reconciliation and waits for it to finish.`,
|
||||
Example: ` # Resume reconciliation for an existing OCIRepository
|
||||
flux resume source oci podinfo`,
|
||||
flux resume source oci podinfo
|
||||
|
||||
# Resume reconciliation for multiple OCIRepositories
|
||||
flux resume source oci podinfo-1 podinfo-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(sourcev1.GroupVersion.WithKind(sourcev1.OCIRepositoryKind)),
|
||||
RunE: resumeCommand{
|
||||
apiType: ociRepositoryType,
|
||||
|
||||
@@ -27,7 +27,10 @@ var suspendAlertCmd = &cobra.Command{
|
||||
Short: "Suspend reconciliation of Alert",
|
||||
Long: `The suspend command disables the reconciliation of a Alert resource.`,
|
||||
Example: ` # Suspend reconciliation for an existing Alert
|
||||
flux suspend alert main`,
|
||||
flux suspend alert main
|
||||
|
||||
# Suspend reconciliation for multiple Alerts
|
||||
flux suspend alert main-1 main-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(notificationv1.GroupVersion.WithKind(notificationv1.AlertKind)),
|
||||
RunE: suspendCommand{
|
||||
apiType: alertType,
|
||||
|
||||
@@ -28,7 +28,10 @@ var suspendHrCmd = &cobra.Command{
|
||||
Short: "Suspend reconciliation of HelmRelease",
|
||||
Long: `The suspend command disables the reconciliation of a HelmRelease resource.`,
|
||||
Example: ` # Suspend reconciliation for an existing Helm release
|
||||
flux suspend hr podinfo`,
|
||||
flux suspend hr podinfo
|
||||
|
||||
# Suspend reconciliation for multiple Helm releases
|
||||
flux suspend hr podinfo-1 podinfo-2 `,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(helmv2.GroupVersion.WithKind(helmv2.HelmReleaseKind)),
|
||||
RunE: suspendCommand{
|
||||
apiType: helmReleaseType,
|
||||
|
||||
@@ -27,7 +27,10 @@ var suspendImageRepositoryCmd = &cobra.Command{
|
||||
Short: "Suspend reconciliation of an ImageRepository",
|
||||
Long: `The suspend image repository command disables the reconciliation of a ImageRepository resource.`,
|
||||
Example: ` # Suspend reconciliation for an existing ImageRepository
|
||||
flux suspend image repository alpine`,
|
||||
flux suspend image repository alpine
|
||||
|
||||
# Suspend reconciliation for multiple ImageRepositories
|
||||
flux suspend image repository alpine-1 alpine-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(imagev1.GroupVersion.WithKind(imagev1.ImageRepositoryKind)),
|
||||
RunE: suspendCommand{
|
||||
apiType: imageRepositoryType,
|
||||
|
||||
@@ -27,7 +27,10 @@ var suspendImageUpdateCmd = &cobra.Command{
|
||||
Short: "Suspend reconciliation of an ImageUpdateAutomation",
|
||||
Long: `The suspend image update command disables the reconciliation of a ImageUpdateAutomation resource.`,
|
||||
Example: ` # Suspend reconciliation for an existing ImageUpdateAutomation
|
||||
flux suspend image update latest-images`,
|
||||
flux suspend image update latest-images
|
||||
|
||||
# Suspend reconciliation for multiple ImageUpdateAutomations
|
||||
flux suspend image update latest-images-1 latest-images-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(autov1.GroupVersion.WithKind(autov1.ImageUpdateAutomationKind)),
|
||||
RunE: suspendCommand{
|
||||
apiType: imageUpdateAutomationType,
|
||||
|
||||
@@ -28,7 +28,10 @@ var suspendKsCmd = &cobra.Command{
|
||||
Short: "Suspend reconciliation of Kustomization",
|
||||
Long: `The suspend command disables the reconciliation of a Kustomization resource.`,
|
||||
Example: ` # Suspend reconciliation for an existing Kustomization
|
||||
flux suspend ks podinfo`,
|
||||
flux suspend ks podinfo
|
||||
|
||||
# Suspend reconciliation for multiple Kustomizations
|
||||
flux suspend ks podinfo-1 podinfo-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(kustomizev1.GroupVersion.WithKind(kustomizev1.KustomizationKind)),
|
||||
RunE: suspendCommand{
|
||||
apiType: kustomizationType,
|
||||
|
||||
@@ -27,7 +27,10 @@ var suspendReceiverCmd = &cobra.Command{
|
||||
Short: "Suspend reconciliation of Receiver",
|
||||
Long: `The suspend command disables the reconciliation of a Receiver resource.`,
|
||||
Example: ` # Suspend reconciliation for an existing Receiver
|
||||
flux suspend receiver main`,
|
||||
flux suspend receiver main
|
||||
|
||||
# Suspend reconciliation for multiple Receivers
|
||||
flux suspend receiver main-1 main-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(notificationv1.GroupVersion.WithKind(notificationv1.ReceiverKind)),
|
||||
RunE: suspendCommand{
|
||||
apiType: receiverType,
|
||||
|
||||
@@ -27,7 +27,10 @@ var suspendSourceBucketCmd = &cobra.Command{
|
||||
Short: "Suspend reconciliation of a Bucket",
|
||||
Long: `The suspend command disables the reconciliation of a Bucket resource.`,
|
||||
Example: ` # Suspend reconciliation for an existing Bucket
|
||||
flux suspend source bucket podinfo`,
|
||||
flux suspend source bucket podinfo
|
||||
|
||||
# Suspend reconciliation for multiple Buckets
|
||||
flux suspend source bucket podinfo-1 podinfo-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(sourcev1.GroupVersion.WithKind(sourcev1.BucketKind)),
|
||||
RunE: suspendCommand{
|
||||
apiType: bucketType,
|
||||
|
||||
@@ -27,7 +27,10 @@ var suspendSourceHelmChartCmd = &cobra.Command{
|
||||
Short: "Suspend reconciliation of a HelmChart",
|
||||
Long: `The suspend command disables the reconciliation of a HelmChart resource.`,
|
||||
Example: ` # Suspend reconciliation for an existing HelmChart
|
||||
flux suspend source chart podinfo`,
|
||||
flux suspend source chart podinfo
|
||||
|
||||
# Suspend reconciliation for multiple HelmCharts
|
||||
flux suspend source chart podinfo-1 podinfo-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(sourcev1.GroupVersion.WithKind(sourcev1.HelmChartKind)),
|
||||
RunE: suspendCommand{
|
||||
apiType: helmChartType,
|
||||
|
||||
@@ -27,7 +27,10 @@ var suspendSourceGitCmd = &cobra.Command{
|
||||
Short: "Suspend reconciliation of a GitRepository",
|
||||
Long: `The suspend command disables the reconciliation of a GitRepository resource.`,
|
||||
Example: ` # Suspend reconciliation for an existing GitRepository
|
||||
flux suspend source git podinfo`,
|
||||
flux suspend source git podinfo
|
||||
|
||||
# Suspend reconciliation for multiple GitRepositories
|
||||
flux suspend source git podinfo-1 podinfo-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(sourcev1.GroupVersion.WithKind(sourcev1.GitRepositoryKind)),
|
||||
RunE: suspendCommand{
|
||||
apiType: gitRepositoryType,
|
||||
|
||||
@@ -27,7 +27,10 @@ var suspendSourceHelmCmd = &cobra.Command{
|
||||
Short: "Suspend reconciliation of a HelmRepository",
|
||||
Long: `The suspend command disables the reconciliation of a HelmRepository resource.`,
|
||||
Example: ` # Suspend reconciliation for an existing HelmRepository
|
||||
flux suspend source helm bitnami`,
|
||||
flux suspend source helm bitnami
|
||||
|
||||
# Suspend reconciliation for multiple HelmRepositories
|
||||
flux suspend source helm bitnami-1 bitnami-2 `,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(sourcev1.GroupVersion.WithKind(sourcev1.HelmRepositoryKind)),
|
||||
RunE: suspendCommand{
|
||||
apiType: helmRepositoryType,
|
||||
|
||||
@@ -27,7 +27,10 @@ var suspendSourceOCIRepositoryCmd = &cobra.Command{
|
||||
Short: "Suspend reconciliation of an OCIRepository",
|
||||
Long: `The suspend command disables the reconciliation of an OCIRepository resource.`,
|
||||
Example: ` # Suspend reconciliation for an existing OCIRepository
|
||||
flux suspend source oci podinfo`,
|
||||
flux suspend source oci podinfo
|
||||
|
||||
# Suspend reconciliation for multiple OCIRepositories
|
||||
flux suspend source oci podinfo-1 podinfo-2`,
|
||||
ValidArgsFunction: resourceNamesCompletionFunc(sourcev1.GroupVersion.WithKind(sourcev1.OCIRepositoryKind)),
|
||||
RunE: suspendCommand{
|
||||
apiType: ociRepositoryType,
|
||||
|
||||
Reference in New Issue
Block a user