mirror of https://github.com/portainer/portainer
17 lines
313 B
Go
17 lines
313 B
Go
![]() |
package kubernetes
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
rbacv1 "k8s.io/api/rbac/v1"
|
||
|
)
|
||
|
|
||
|
type (
|
||
|
K8sClusterRoleBinding struct {
|
||
|
Name string `json:"name"`
|
||
|
RoleRef rbacv1.RoleRef `json:"roleRef"`
|
||
|
Subjects []rbacv1.Subject `json:"subjects"`
|
||
|
CreationDate time.Time `json:"creationDate"`
|
||
|
}
|
||
|
)
|