clusterrolebinding

package
v0.2.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 22, 2022 License: Apache-2.0 Imports: 23 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ERR_TYPE = fmt.Errorf("type must be *rbacv1.ClusterRoleBinding, rbacv1.ClusterRoleBinding or string")

Functions

This section is empty.

Types

type Handler

type Handler struct {
	Options *typed.HandlerOptions
	// contains filtered or unexported fields
}

func New

func New(ctx context.Context, kubeconfig string) (handler *Handler, err error)

New returns a clusterrolebinding handler from kubeconfig or in-cluster config.

func (*Handler) Apply

func (h *Handler) Apply(filename string) (*rbacv1.ClusterRoleBinding, error)

Apply apply clusterrolebinding from file, alias to "ApplyFromFile".

func (*Handler) ApplyFromBytes

func (h *Handler) ApplyFromBytes(data []byte) (crb *rbacv1.ClusterRoleBinding, err error)

ApplyFromBytes apply clusterrolebinding from bytes.

func (*Handler) ApplyFromFile

func (h *Handler) ApplyFromFile(filename string) (crb *rbacv1.ClusterRoleBinding, err error)

ApplyFromFile apply clusterrolebinding from yaml file.

func (*Handler) ApplyFromRaw

func (h *Handler) ApplyFromRaw(raw map[string]interface{}) (*rbacv1.ClusterRoleBinding, error)

ApplyFromRaw apply clusterrolebinding from map[string]interface{}.

func (*Handler) Clientset added in v0.2.0

func (h *Handler) Clientset() *kubernetes.Clientset

func (*Handler) Create

func (h *Handler) Create(filename string) (*rbacv1.ClusterRoleBinding, error)

Create create clusterrolebinding from yaml file, alias to "CreateFromFile".

func (*Handler) CreateFromBytes

func (h *Handler) CreateFromBytes(data []byte) (*rbacv1.ClusterRoleBinding, error)

CreateFromBytes create clusterrolebinding from bytes.

func (*Handler) CreateFromFile

func (h *Handler) CreateFromFile(filename string) (*rbacv1.ClusterRoleBinding, error)

CreateFromFile create clusterrolebinding from yaml file.

func (*Handler) CreateFromRaw

func (h *Handler) CreateFromRaw(raw map[string]interface{}) (*rbacv1.ClusterRoleBinding, error)

CreateFromRaw create ClusterRoleBinding from map[string]interface{}.

func (*Handler) DeepCopy

func (in *Handler) DeepCopy() *Handler

func (*Handler) Delete

func (h *Handler) Delete(name string) error

Delete delete clusterrolebinding by name, alias to "DeleteByName".

func (*Handler) DeleteByName

func (h *Handler) DeleteByName(name string) error

DeleteByName delete clusterrolebinding by name.

func (*Handler) DeleteFromBytes

func (h *Handler) DeleteFromBytes(data []byte) error

DeleteFromBytes delete clusterrolebinding from bytes.

func (*Handler) DeleteFromFile

func (h *Handler) DeleteFromFile(filename string) error

DeleteFromFile delete clusterrolebinding from yaml file.

func (*Handler) DiscoveryClient added in v0.2.0

func (h *Handler) DiscoveryClient() *discovery.DiscoveryClient

func (*Handler) DynamicClient added in v0.2.0

func (h *Handler) DynamicClient() dynamic.Interface

func (*Handler) Get

func (h *Handler) Get(name string) (*rbacv1.ClusterRoleBinding, error)

Get get clusterrolebinding by name, alias to "GetByName".

func (*Handler) GetAge added in v0.2.0

func (h *Handler) GetAge(object interface{}) (time.Duration, error)

GetAge returns clusterrolebinding age.

func (*Handler) GetByName

func (h *Handler) GetByName(name string) (*rbacv1.ClusterRoleBinding, error)

GetByName get clusterrolebinding by name.

func (*Handler) GetFromBytes

func (h *Handler) GetFromBytes(data []byte) (*rbacv1.ClusterRoleBinding, error)

GetFromBytes get clusterrolebinding from bytes.

func (*Handler) GetFromFile

func (h *Handler) GetFromFile(filename string) (*rbacv1.ClusterRoleBinding, error)

GetFromFile get clusterrolebinding from yaml file.

func (*Handler) GetRole added in v0.2.0

func (h *Handler) GetRole(object interface{}) (*Role, error)

GetRole get the clusterrole binding by this clusterrolebinding.

func (*Handler) GetSubjects added in v0.2.0

func (h *Handler) GetSubjects(object interface{}) ([]Subject, error)

GetSubjects get the subjects to which the clusterrole applies. All supported subject kinds are: User, Group, ServiceAccount.

func (*Handler) List

func (h *Handler) List(labels string) (*rbacv1.ClusterRoleBindingList, error)

List list clusterrolebindings by labels, alias to "ListByLabel".

func (*Handler) ListAll

func (h *Handler) ListAll() (*rbacv1.ClusterRoleBindingList, error)

ListAll list all clusterrolebindings in the k8s cluster.

func (*Handler) ListByLabel

func (h *Handler) ListByLabel(labels string) (*rbacv1.ClusterRoleBindingList, error)

ListByLabel list clusterrolebindings by labels.

func (*Handler) RESTClient added in v0.2.0

func (h *Handler) RESTClient() *rest.RESTClient

func (*Handler) RunInformer

func (h *Handler) RunInformer(
	addFunc func(obj interface{}),
	updateFunc func(oldObj, newObj interface{}),
	deleteFunc func(obj interface{}),
	stopCh chan struct{})

RunInformer.

func (*Handler) SetForceDelete

func (h *Handler) SetForceDelete(force bool)

func (*Handler) SetLimit

func (h *Handler) SetLimit(limit int64)

func (*Handler) SetTimeout

func (h *Handler) SetTimeout(timeout int64)

func (*Handler) Update

func (h *Handler) Update(filename string) (*rbacv1.ClusterRoleBinding, error)

Update update clusterrolebinding from file, alias to "UpdateFromFile".

func (*Handler) UpdateFromBytes

func (h *Handler) UpdateFromBytes(data []byte) (*rbacv1.ClusterRoleBinding, error)

UpdateFromBytes update clusterrolebinding from bytes.

func (*Handler) UpdateFromFile

func (h *Handler) UpdateFromFile(filename string) (*rbacv1.ClusterRoleBinding, error)

UpdateFromFile update clusterrolebinding from yaml file.

func (*Handler) UpdateFromRaw

func (h *Handler) UpdateFromRaw(raw map[string]interface{}) (*rbacv1.ClusterRoleBinding, error)

UpdateFromRaw update clusterrolebinding from map[string]interface{}.

func (*Handler) Watch

func (h *Handler) Watch(name string,
	addFunc, modifyFunc, deleteFunc func(x interface{}), x interface{}) error

Watch watch clusterrolebinding by name, alias to "WatchByName".

func (*Handler) WatchByLabel

func (h *Handler) WatchByLabel(labelSelector string,
	addFunc, modifyFunc, deleteFunc func(x interface{}), x interface{}) (err error)

WatchByLabel watch clusterrolebindings by label.

func (*Handler) WatchByName

func (h *Handler) WatchByName(name string,
	addFunc, modifyFunc, deleteFunc func(x interface{}), x interface{}) (err error)

WatchByName watch clusterrolebindings by name.

func (*Handler) WithDryRun

func (h *Handler) WithDryRun() *Handler

type Role added in v0.2.0

type Role struct {
	Kind string
	Name string
}

type Subject added in v0.2.0

type Subject struct {
	Kind      string
	Name      string
	Namespace string
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL