mirror of
https://github.com/k8sgpt-ai/k8sgpt.git
synced 2025-06-05 13:32:36 +00:00
* feat: auth remove: add -b flag Signed-off-by: Pavel Sturc <psturc@redhat.com> * fix: address comment Signed-off-by: Pavel Sturc <psturc@redhat.com> --------- Signed-off-by: Pavel Sturc <psturc@redhat.com> Co-authored-by: Alex Jones <alexsimonjones@gmail.com>
78 lines
2.1 KiB
Go
78 lines
2.1 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 auth
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/fatih/color"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
var removeCmd = &cobra.Command{
|
|
Use: "remove",
|
|
Short: "Remove provider(s)",
|
|
Long: "The command to remove AI backend provider(s)",
|
|
PreRun: func(cmd *cobra.Command, args []string) {
|
|
_ = cmd.MarkFlagRequired("backends")
|
|
},
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
if backend == "" {
|
|
color.Red("Error: backends must be set.")
|
|
_ = cmd.Help()
|
|
return
|
|
}
|
|
inputBackends := strings.Split(backend, ",")
|
|
|
|
err := viper.UnmarshalKey("ai", &configAI)
|
|
if err != nil {
|
|
color.Red("Error: %v", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
for _, b := range inputBackends {
|
|
foundBackend := false
|
|
for i, provider := range configAI.Providers {
|
|
if b == provider.Name {
|
|
foundBackend = true
|
|
configAI.Providers = append(configAI.Providers[:i], configAI.Providers[i+1:]...)
|
|
if configAI.DefaultProvider == b {
|
|
configAI.DefaultProvider = "openai"
|
|
}
|
|
color.Green("%s deleted from the AI backend provider list", b)
|
|
break
|
|
}
|
|
}
|
|
if !foundBackend {
|
|
color.Red("Error: %s does not exist in configuration file. Please use k8sgpt auth new.", b)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
viper.Set("ai", configAI)
|
|
if err := viper.WriteConfig(); err != nil {
|
|
color.Red("Error writing config file: %s", err.Error())
|
|
os.Exit(1)
|
|
}
|
|
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
// add flag for backends
|
|
removeCmd.Flags().StringVarP(&backend, "backends", "b", "", "Backend AI providers to remove (separated by a comma)")
|
|
}
|