configmap

package
v0.1.1 Latest Latest
Warning

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

Go to latest
Published: Jul 5, 2022 License: Apache-2.0 Imports: 21 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Handler

type Handler struct {
	Options *typed.HandlerOptions

	sync.Mutex
	// contains filtered or unexported fields
}

func New

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

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

func (*Handler) Apply

func (h *Handler) Apply(filename string) (*corev1.ConfigMap, error)

Apply apply configmap from yaml file, alias to "ApplyFromFile".

func (*Handler) ApplyFromBytes

func (h *Handler) ApplyFromBytes(data []byte) (configmap *corev1.ConfigMap, err error)

ApplyFromBytes apply configmap from bytes.

func (*Handler) ApplyFromFile

func (h *Handler) ApplyFromFile(filename string) (configmap *corev1.ConfigMap, err error)

ApplyFromFile apply configmap from yaml file.

func (*Handler) ApplyFromRaw

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

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

func (*Handler) Create

func (h *Handler) Create(filename string) (*corev1.ConfigMap, error)

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

func (*Handler) CreateFromBytes

func (h *Handler) CreateFromBytes(data []byte) (*corev1.ConfigMap, error)

CreateFromBytes create configmap from bytes.

func (*Handler) CreateFromFile

func (h *Handler) CreateFromFile(filename string) (*corev1.ConfigMap, error)

CreateFromFile create configmap from yaml file.

func (*Handler) CreateFromRaw

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

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

func (*Handler) DeepCopy

func (in *Handler) DeepCopy() *Handler

func (*Handler) Delete

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

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

func (*Handler) DeleteByName

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

DeleteByName delete configmap by name.

func (*Handler) DeleteFromBytes

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

DeleteFromBytes delete configmap from bytes.

func (*Handler) DeleteFromFile

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

DeleteFromFile delete configmap from yaml file.

func (*Handler) Get

func (h *Handler) Get(name string) (*corev1.ConfigMap, error)

Get get configmap by name.

func (*Handler) GetByName

func (h *Handler) GetByName(name string) (*corev1.ConfigMap, error)

GetByName get configmap by name.

func (*Handler) GetData

func (h *Handler) GetData(name string) (map[string]string, error)

GetData get configmap.spec.data

func (*Handler) GetFromBytes

func (h *Handler) GetFromBytes(data []byte) (*corev1.ConfigMap, error)

GetFromBytes get configmap from bytes.

func (*Handler) GetFromFile

func (h *Handler) GetFromFile(filename string) (configmap *corev1.ConfigMap, err error)

GetFromFile get configmap from yaml file.

func (*Handler) List

func (h *Handler) List(labels string) (*corev1.ConfigMapList, error)

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

func (*Handler) ListAll

func (h *Handler) ListAll() (*corev1.ConfigMapList, error)

ListAll list all configmaps in the k8s cluster.

func (*Handler) ListByLabel

func (h *Handler) ListByLabel(labels string) (*corev1.ConfigMapList, error)

ListByLabel list configmaps by labels.

func (*Handler) ListByNamespace

func (h *Handler) ListByNamespace(namespace string) (*corev1.ConfigMapList, error)

ListByNamespace list configmaps by namespace.

func (*Handler) Namespace

func (h *Handler) Namespace() string

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) (*corev1.ConfigMap, error)

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

func (*Handler) UpdateFromBytes

func (h *Handler) UpdateFromBytes(data []byte) (*corev1.ConfigMap, error)

UpdateFromBytes update configmap from bytes.

func (*Handler) UpdateFromFile

func (h *Handler) UpdateFromFile(filename string) (*corev1.ConfigMap, error)

UpdateFromFile update configmap from yaml file.

func (*Handler) UpdateFromRaw

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

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

func (*Handler) Watch

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

WatchByName watch configmap 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 configmap by label.

func (*Handler) WatchByName

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

WatchByName watch configmap by name.

func (*Handler) WithDryRun

func (h *Handler) WithDryRun() *Handler

func (*Handler) WithNamespace

func (h *Handler) WithNamespace(namespace string) *Handler

Jump to

Keyboard shortcuts

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