mirror of
https://github.com/rancher/k3k.git
synced 2026-08-19 12:26:17 +00:00
* change allowedModeTypse to allowedMode * added shortname "vcp" and additional mode column
119 lines
2.9 KiB
Go
119 lines
2.9 KiB
Go
package cmds
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/rancher/k3k/pkg/apis/k3k.io/v1alpha1"
|
|
"github.com/rancher/k3k/pkg/controller/policy"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/urfave/cli/v2"
|
|
v1 "k8s.io/api/core/v1"
|
|
apierrors "k8s.io/apimachinery/pkg/api/errors"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/types"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
)
|
|
|
|
type VirtualClusterPolicyCreateConfig struct {
|
|
mode string
|
|
}
|
|
|
|
func NewPolicyCreateCmd(appCtx *AppContext) *cli.Command {
|
|
config := &VirtualClusterPolicyCreateConfig{}
|
|
|
|
createFlags := []cli.Flag{
|
|
&cli.StringFlag{
|
|
Name: "mode",
|
|
Usage: "The allowed mode type of the policy",
|
|
Destination: &config.mode,
|
|
Value: "shared",
|
|
Action: func(ctx *cli.Context, value string) error {
|
|
switch value {
|
|
case string(v1alpha1.VirtualClusterMode), string(v1alpha1.SharedClusterMode):
|
|
return nil
|
|
default:
|
|
return errors.New(`mode should be one of "shared" or "virtual"`)
|
|
}
|
|
},
|
|
},
|
|
}
|
|
|
|
return &cli.Command{
|
|
Name: "create",
|
|
Usage: "Create new policy",
|
|
UsageText: "k3kcli policy create [command options] NAME",
|
|
Action: policyCreateAction(appCtx, config),
|
|
Flags: WithCommonFlags(appCtx, createFlags...),
|
|
HideHelpCommand: true,
|
|
}
|
|
}
|
|
|
|
func policyCreateAction(appCtx *AppContext, config *VirtualClusterPolicyCreateConfig) cli.ActionFunc {
|
|
return func(clx *cli.Context) error {
|
|
ctx := context.Background()
|
|
client := appCtx.Client
|
|
|
|
if clx.NArg() != 1 {
|
|
return cli.ShowSubcommandHelp(clx)
|
|
}
|
|
|
|
policyName := clx.Args().First()
|
|
|
|
_, err := createPolicy(ctx, client, v1alpha1.ClusterMode(config.mode), policyName)
|
|
|
|
return err
|
|
}
|
|
}
|
|
|
|
func createNamespace(ctx context.Context, client client.Client, name, policyName string) error {
|
|
ns := &v1.Namespace{ObjectMeta: metav1.ObjectMeta{Name: name}}
|
|
|
|
if policyName != "" {
|
|
ns.Labels = map[string]string{
|
|
policy.PolicyNameLabelKey: policyName,
|
|
}
|
|
}
|
|
|
|
if err := client.Get(ctx, types.NamespacedName{Name: name}, ns); err != nil {
|
|
if !apierrors.IsNotFound(err) {
|
|
return err
|
|
}
|
|
|
|
logrus.Infof(`Creating namespace [%s]`, name)
|
|
|
|
if err := client.Create(ctx, ns); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func createPolicy(ctx context.Context, client client.Client, mode v1alpha1.ClusterMode, policyName string) (*v1alpha1.VirtualClusterPolicy, error) {
|
|
logrus.Infof("Creating policy [%s]", policyName)
|
|
|
|
policy := &v1alpha1.VirtualClusterPolicy{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: policyName,
|
|
},
|
|
TypeMeta: metav1.TypeMeta{
|
|
Kind: "VirtualClusterPolicy",
|
|
APIVersion: "k3k.io/v1alpha1",
|
|
},
|
|
Spec: v1alpha1.VirtualClusterPolicySpec{
|
|
AllowedMode: mode,
|
|
},
|
|
}
|
|
|
|
if err := client.Create(ctx, policy); err != nil {
|
|
if !apierrors.IsAlreadyExists(err) {
|
|
return nil, err
|
|
}
|
|
|
|
logrus.Infof("Policy [%s] already exists", policyName)
|
|
}
|
|
|
|
return policy, nil
|
|
}
|