/* Copyright 2021 The Flux authors 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" "encoding/json" "fmt" "strings" "github.com/spf13/cobra" v1 "k8s.io/api/apps/v1" "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/yaml" "github.com/fluxcd/flux2/internal/utils" ) var versionCmd = &cobra.Command{ Use: "version", Short: "Print the client and server-side components version information.", Long: "Print the client and server-side components version information for the current context.", Example: `# Print client and server-side version flux version # Print only client version flux version --client # Print information in json format flux version -o json `, RunE: versionCmdRun, } type versionFlags struct { client bool output string } var versionArgs versionFlags func init() { versionCmd.Flags().BoolVar(&versionArgs.client, "client", false, "print only client version") versionCmd.Flags().StringVarP(&versionArgs.output, "output", "o", "yaml", "the format in which the information should be printed. can be 'json' or 'yaml'") rootCmd.AddCommand(versionCmd) } func versionCmdRun(cmd *cobra.Command, args []string) error { if versionArgs.output != "yaml" && versionArgs.output != "json" { return fmt.Errorf("--output must be json or yaml, not %s", versionArgs.output) } ctx, cancel := context.WithTimeout(context.Background(), rootArgs.timeout) defer cancel() info := map[string]string{} info["flux"] = rootArgs.defaults.Version if !versionArgs.client { kubeClient, err := utils.KubeClient(rootArgs.kubeconfig, rootArgs.kubecontext) if err != nil { return err } selector := client.MatchingLabels{"app.kubernetes.io/instance": rootArgs.namespace} var list v1.DeploymentList if err := kubeClient.List(ctx, &list, client.InNamespace(rootArgs.namespace), selector); err != nil { return err } if len(list.Items) == 0 { return fmt.Errorf("no deployments found in %s namespace", rootArgs.namespace) } for _, d := range list.Items { for _, c := range d.Spec.Template.Spec.Containers { name, tag, err := splitImageStr(c.Image) if err != nil { return err } info[name] = tag } } } var marshalled []byte var err error if versionArgs.output == "json" { marshalled, err = json.MarshalIndent(&info, "", " ") marshalled = append(marshalled, "\n"...) } else { marshalled, err = yaml.Marshal(&info) } if err != nil { return err } rootCmd.Print(string(marshalled)) return nil } func splitImageStr(image string) (string, string, error) { imageArr := strings.Split(image, ":") if len(imageArr) < 2 { return "", "", fmt.Errorf("missing image tag in image %s", image) } name, tag := imageArr[0], imageArr[1] nameArr := strings.Split(name, "/") return nameArr[len(nameArr)-1], tag, nil }