filesync

package
v0.0.0-...-486893a Latest Latest
Warning

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

Go to latest
Published: Jun 20, 2023 License: MIT Imports: 34 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// OnCreating is used as part of the Event 'reason' when a FileSync is creating its own resources
	OnCreating = "Creating"
	// OnUpdating is used as part of the Event 'reason' when a FileSync is updating its own resources
	OnUpdating = "Updating"
	// SuccessSynced is used as part of the Event 'reason' when a FileSync is synced
	SuccessSynced = "Synced"
	// FailSynced is used as part of the Event 'reason' when a FileSync synced failed
	FailSynced = "Failed"
	// ErrResourceExists is used as part of the Event 'reason' when a FileSync fails
	// to sync due to a Deployment of the same name already existing.
	ErrResourceExists = "ErrResourceExists"

	// MessageResourceExists is the message used for Events when a resource
	// fails to sync due to a Deployment already existing
	MessageResourceExists = "Resource %q already exists and is not managed by FileSync"
	// MessageResourceSynced is the message used for an Event fired when a FileSync
	// is synced successfully
	MessageResourceSynced = "FileSync synced successfully"

	MessageResourceModifyFailed = "Can not modify an exist Filesync object"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Controller

type Controller struct {
	// contains filtered or unexported fields
}

Controller is the controller implementation for FileSync resources

func NewController

func NewController(
	kubeclientset kubernetes.Interface,
	filesyncclientset clientset.Interface,
	deploymentInformer appsinformers.DeploymentInformer,
	secretInformer coreinformers.SecretInformer,
	configmapInformer coreinformers.ConfigMapInformer,
	filesyncInformer informers.FileSyncInformer) *Controller

NewController returns a new filesync controller

func (*Controller) Run

func (c *Controller) Run(threadiness int, stopCh <-chan struct{}) error

Run will set up the event handlers for types we are interested in, as well as syncing informer caches and starting workers. It will block until stopCh is closed, at which point it will shutdown the workqueue and wait for workers to finish processing their current work items.

type JsmClient

type JsmClient struct {
	// contains filtered or unexported fields
}

func NewJsmClient

func NewJsmClient(servers string, opts ...nats.Option) (*JsmClient, error)

func (*JsmClient) Close

func (c *JsmClient) Close()

func (*JsmClient) CreateDefaultConsumerIfNotExist

func (c *JsmClient) CreateDefaultConsumerIfNotExist(streamName, consumerName, filterSubject string) (created bool, err error)

func (*JsmClient) CreateDefaultStreamIfNotExist

func (c *JsmClient) CreateDefaultStreamIfNotExist(streamName string, subjects ...string) (created bool, err error)

func (*JsmClient) LoadConsumer

func (c *JsmClient) LoadConsumer(stream, consumer string) (*jsm.Consumer, error)

func (*JsmClient) LoadStream

func (c *JsmClient) LoadStream(name string) (*jsm.Stream, error)

func (*JsmClient) NewConsumer

func (c *JsmClient) NewConsumer(stream string, opts []jsm.ConsumerOption) (*jsm.Consumer, error)

func (*JsmClient) NewStream

func (c *JsmClient) NewStream(name string, opts []jsm.StreamOption) (*jsm.Stream, error)

Jump to

Keyboard shortcuts

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