mirror of
https://github.com/rancher/rke.git
synced 2025-04-27 03:11:03 +00:00
56 lines
2.0 KiB
Go
56 lines
2.0 KiB
Go
package authz
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/rancher/rke/k8s"
|
|
"github.com/rancher/rke/log"
|
|
"github.com/rancher/rke/templates"
|
|
"k8s.io/client-go/transport"
|
|
)
|
|
|
|
func ApplyJobDeployerServiceAccount(ctx context.Context, kubeConfigPath string, k8sWrapTransport transport.WrapperFunc) error {
|
|
log.Infof(ctx, "[authz] Creating rke-job-deployer ServiceAccount")
|
|
k8sClient, err := k8s.NewClient(kubeConfigPath, k8sWrapTransport)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err := k8s.UpdateClusterRoleBindingFromYaml(k8sClient, templates.JobDeployerClusterRoleBinding); err != nil {
|
|
return err
|
|
}
|
|
if err := k8s.UpdateServiceAccountFromYaml(k8sClient, templates.JobDeployerServiceAccount); err != nil {
|
|
return err
|
|
}
|
|
log.Infof(ctx, "[authz] rke-job-deployer ServiceAccount created successfully")
|
|
return nil
|
|
}
|
|
|
|
func ApplySystemNodeClusterRoleBinding(ctx context.Context, kubeConfigPath string, k8sWrapTransport transport.WrapperFunc) error {
|
|
log.Infof(ctx, "[authz] Creating system:node ClusterRoleBinding")
|
|
k8sClient, err := k8s.NewClient(kubeConfigPath, k8sWrapTransport)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err := k8s.UpdateClusterRoleBindingFromYaml(k8sClient, templates.SystemNodeClusterRoleBinding); err != nil {
|
|
return err
|
|
}
|
|
log.Infof(ctx, "[authz] system:node ClusterRoleBinding created successfully")
|
|
return nil
|
|
}
|
|
|
|
func ApplyKubeAPIClusterRole(ctx context.Context, kubeConfigPath string, k8sWrapTransport transport.WrapperFunc) error {
|
|
log.Infof(ctx, "[authz] Creating kube-apiserver proxy ClusterRole and ClusterRoleBinding")
|
|
k8sClient, err := k8s.NewClient(kubeConfigPath, k8sWrapTransport)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err := k8s.UpdateClusterRoleFromYaml(k8sClient, templates.KubeAPIClusterRole); err != nil {
|
|
return err
|
|
}
|
|
if err := k8s.UpdateClusterRoleBindingFromYaml(k8sClient, templates.KubeAPIClusterRoleBinding); err != nil {
|
|
return err
|
|
}
|
|
log.Infof(ctx, "[authz] kube-apiserver proxy ClusterRole and ClusterRoleBinding created successfully")
|
|
return nil
|
|
}
|