b7dd46c4e6
This patchset introduces airshipctl command - airshipctl cluster rotate-sa-token which basically rotates SA tokens Previous work: https://review.opendev.org/#/c/749470/ Change-Id: Ibe932fa8d2831979e5b2ac2781f746e8ec2fdc3c
61 lines
1.5 KiB
Go
61 lines
1.5 KiB
Go
/*
|
|
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
|
|
}
|