forked from gruntwork-io/kubergrunt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrole.go
84 lines (73 loc) · 2.39 KB
/
role.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package kubectl
import (
"context"
"github.com/gruntwork-io/go-commons/errors"
rbacv1 "k8s.io/api/rbac/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
// PrepareTillerRole will construct a new Role struct with the provided
// metadata. The role can later be used to add rules.
func PrepareRole(
namespace string,
name string,
labels map[string]string,
annotations map[string]string,
rules []rbacv1.PolicyRule,
) *rbacv1.Role {
// Cannot use a struct literal due to promoted fields from the ObjectMeta
newRole := rbacv1.Role{}
newRole.Name = name
newRole.Namespace = namespace
newRole.Labels = labels
newRole.Annotations = annotations
newRole.Rules = rules
return &newRole
}
// CreateRole will create the provided role on the Kubernetes cluster.
func CreateRole(options *KubectlOptions, newRole *rbacv1.Role) error {
client, err := GetKubernetesClientFromOptions(options)
if err != nil {
return err
}
_, err = client.RbacV1().Roles(newRole.Namespace).Create(context.Background(), newRole, metav1.CreateOptions{})
if err != nil {
return errors.WithStackTrace(err)
}
return nil
}
// GetRole will get an RBAC role by name in the provided namespace
func GetRole(options *KubectlOptions, namespace string, name string) (*rbacv1.Role, error) {
client, err := GetKubernetesClientFromOptions(options)
if err != nil {
return nil, err
}
role, err := client.RbacV1().Roles(namespace).Get(context.Background(), name, metav1.GetOptions{})
if err != nil {
return nil, errors.WithStackTrace(err)
}
return role, nil
}
// ListRole will list all roles that match the provided filters in the provided namespace
func ListRoles(options *KubectlOptions, namespace string, filters metav1.ListOptions) ([]rbacv1.Role, error) {
client, err := GetKubernetesClientFromOptions(options)
if err != nil {
return nil, err
}
resp, err := client.RbacV1().Roles(namespace).List(context.Background(), filters)
if err != nil {
return nil, errors.WithStackTrace(err)
}
return resp.Items, nil
}
// DeleteRole will delete the role in the provided namespace that has the provided name.
func DeleteRole(options *KubectlOptions, namespace string, name string) error {
client, err := GetKubernetesClientFromOptions(options)
if err != nil {
return err
}
err = client.RbacV1().Roles(namespace).Delete(context.Background(), name, metav1.DeleteOptions{})
if err != nil {
return errors.WithStackTrace(err)
}
return nil
}