mirror of
https://github.com/k8sgpt-ai/k8sgpt.git
synced 2026-07-18 02:45:16 +00:00
* fix(deps): update module github.com/olekukonko/tablewriter to v1 Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * fix(cache): migrate to tablewriter v1 API tablewriter v1 replaces SetHeader with Header and makes Append/Render return errors. Update cmd/cache/list.go accordingly to fix the build. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Signed-off-by: Alex Jones <axjns@example.com> --------- Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Signed-off-by: Alex Jones <axjns@example.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Alex Jones <axjns@example.com> Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
74 lines
1.8 KiB
Go
74 lines
1.8 KiB
Go
/*
|
|
Copyright 2023 The K8sGPT 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 cache
|
|
|
|
import (
|
|
"os"
|
|
"reflect"
|
|
|
|
"github.com/fatih/color"
|
|
"github.com/k8sgpt-ai/k8sgpt/pkg/cache"
|
|
"github.com/olekukonko/tablewriter"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// listCmd represents the list command
|
|
var listCmd = &cobra.Command{
|
|
Use: "list",
|
|
Short: "List the contents of the cache",
|
|
Long: `This command allows you to list the contents of the cache.`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
// load remote cache if it is configured
|
|
c, err := cache.GetCacheConfiguration()
|
|
if err != nil {
|
|
color.Red("Error: %v", err)
|
|
os.Exit(1)
|
|
}
|
|
names, err := c.List()
|
|
if err != nil {
|
|
color.Red("Error: %v", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
var headers []string
|
|
obj := cache.CacheObjectDetails{}
|
|
objType := reflect.TypeOf(obj)
|
|
for i := 0; i < objType.NumField(); i++ {
|
|
field := objType.Field(i)
|
|
headers = append(headers, field.Name)
|
|
}
|
|
|
|
table := tablewriter.NewWriter(os.Stdout)
|
|
table.Header(headers)
|
|
|
|
for _, v := range names {
|
|
if err := table.Append([]string{v.Name, v.UpdatedAt.String()}); err != nil {
|
|
color.Red("Error: %v", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
if err := table.Render(); err != nil {
|
|
color.Red("Error: %v", err)
|
|
os.Exit(1)
|
|
}
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
CacheCmd.AddCommand(listCmd)
|
|
|
|
}
|