/* 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 https://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 resetsatoken import ( "opendev.org/airship/airshipctl/pkg/config" "opendev.org/airship/airshipctl/pkg/k8s/client" "opendev.org/airship/airshipctl/pkg/log" ) // ResetFlags flags for reset command type ResetFlags struct { Namespace string SecretName string Kubeconfig string } // ResetCommand for reset command type ResetCommand struct { Options ResetFlags CfgFactory config.Factory } // RunE implements the functionality for resetsatoken func (c *ResetCommand) RunE() error { airshipconfig, err := c.CfgFactory() if err != nil { return err } factory := client.DefaultClient kclient, err := factory(airshipconfig.LoadedConfigPath(), c.Options.Kubeconfig) if err != nil { return err } manager, err := NewTokenManager(kclient.ClientSet()) if err != nil { return err } log.Printf("Starting Token Rotation") err = manager.RotateToken(c.Options.Namespace, c.Options.SecretName) if err != nil { return ErrRotateTokenFail{Err: err.Error()} } return nil }