mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.4 KiB
Go
94 lines
2.4 KiB
Go
4 years ago
|
/*
|
||
4 years ago
|
Copyright 2020 The Flux authors
|
||
4 years ago
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
*/
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
"time"
|
||
|
|
||
4 years ago
|
"github.com/fluxcd/pkg/apis/meta"
|
||
|
"github.com/fluxcd/toolkit/internal/utils"
|
||
|
|
||
4 years ago
|
"github.com/spf13/cobra"
|
||
|
"k8s.io/apimachinery/pkg/types"
|
||
|
"k8s.io/apimachinery/pkg/util/wait"
|
||
|
|
||
|
notificationv1 "github.com/fluxcd/notification-controller/api/v1beta1"
|
||
|
)
|
||
|
|
||
|
var reconcileAlertCmd = &cobra.Command{
|
||
|
Use: "alert [name]",
|
||
|
Short: "Reconcile an Alert",
|
||
|
Long: `The reconcile alert command triggers a reconciliation of an Alert resource and waits for it to finish.`,
|
||
|
Example: ` # Trigger a reconciliation for an existing alert
|
||
4 years ago
|
flux reconcile alert main
|
||
4 years ago
|
`,
|
||
|
RunE: reconcileAlertCmdRun,
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
reconcileCmd.AddCommand(reconcileAlertCmd)
|
||
|
}
|
||
|
|
||
|
func reconcileAlertCmdRun(cmd *cobra.Command, args []string) error {
|
||
|
if len(args) < 1 {
|
||
4 years ago
|
return fmt.Errorf("Alert name is required")
|
||
4 years ago
|
}
|
||
|
name := args[0]
|
||
|
|
||
|
ctx, cancel := context.WithTimeout(context.Background(), timeout)
|
||
|
defer cancel()
|
||
|
|
||
4 years ago
|
kubeClient, err := utils.KubeClient(kubeconfig)
|
||
4 years ago
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
namespacedName := types.NamespacedName{
|
||
|
Namespace: namespace,
|
||
|
Name: name,
|
||
|
}
|
||
|
|
||
4 years ago
|
logger.Actionf("annotating Alert %s in %s namespace", name, namespace)
|
||
4 years ago
|
var alert notificationv1.Alert
|
||
|
err = kubeClient.Get(ctx, namespacedName, &alert)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if alert.Annotations == nil {
|
||
|
alert.Annotations = map[string]string{
|
||
|
meta.ReconcileAtAnnotation: time.Now().Format(time.RFC3339Nano),
|
||
|
}
|
||
|
} else {
|
||
|
alert.Annotations[meta.ReconcileAtAnnotation] = time.Now().Format(time.RFC3339Nano)
|
||
|
}
|
||
|
if err := kubeClient.Update(ctx, &alert); err != nil {
|
||
|
return err
|
||
|
}
|
||
4 years ago
|
logger.Successf("Alert annotated")
|
||
4 years ago
|
|
||
|
logger.Waitingf("waiting for reconciliation")
|
||
|
if err := wait.PollImmediate(pollInterval, timeout,
|
||
4 years ago
|
isAlertReady(ctx, kubeClient, namespacedName, &alert)); err != nil {
|
||
4 years ago
|
return err
|
||
|
}
|
||
4 years ago
|
logger.Successf("Alert reconciliation completed")
|
||
4 years ago
|
return nil
|
||
|
}
|