Documentation ¶
Index ¶
- func Add(mgr manager.Manager) error
- type BindingSecretMatcher
- type CustomMatcher
- type EnqueueRequestsForCustomIndexField
- func (e *EnqueueRequestsForCustomIndexField) Delete(evt event.DeleteEvent, q workqueue.RateLimitingInterface)
- func (e *EnqueueRequestsForCustomIndexField) Generic(evt event.GenericEvent, q workqueue.RateLimitingInterface)
- func (e *EnqueueRequestsForCustomIndexField) Update(evt event.UpdateEvent, q workqueue.RateLimitingInterface)
- type ImageStreamMatcher
- type ReconcileAppsodyApplication
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type BindingSecretMatcher ¶ added in v0.6.0
type BindingSecretMatcher struct {
// contains filtered or unexported fields
}
BindingSecretMatcher implements CustomMatcher for Binding Secrets
func (*BindingSecretMatcher) Match ¶ added in v0.6.0
func (b *BindingSecretMatcher) Match(secret metav1.Object) ([]appsodyv1beta1.AppsodyApplication, error)
Match returns all applications that "could" rely on the secret as a secret binding by finding apps that have resourceRef matching the secret name OR app name matching the secret name
type CustomMatcher ¶ added in v0.6.0
type CustomMatcher interface {
Match(metav1.Object) ([]appsodyv1beta1.AppsodyApplication, error)
}
CustomMatcher is an interface for matching apps that satisfy a custom logic
type EnqueueRequestsForCustomIndexField ¶ added in v0.5.0
type EnqueueRequestsForCustomIndexField struct { handler.Funcs Matcher CustomMatcher }
EnqueueRequestsForCustomIndexField enqueues reconcile Requests for Appsody Applications if the app is relying on the modified resource
func (*EnqueueRequestsForCustomIndexField) Delete ¶ added in v0.5.0
func (e *EnqueueRequestsForCustomIndexField) Delete(evt event.DeleteEvent, q workqueue.RateLimitingInterface)
Delete implements EventHandler
func (*EnqueueRequestsForCustomIndexField) Generic ¶ added in v0.5.0
func (e *EnqueueRequestsForCustomIndexField) Generic(evt event.GenericEvent, q workqueue.RateLimitingInterface)
Generic implements EventHandler
func (*EnqueueRequestsForCustomIndexField) Update ¶ added in v0.5.0
func (e *EnqueueRequestsForCustomIndexField) Update(evt event.UpdateEvent, q workqueue.RateLimitingInterface)
Update implements EventHandler
type ImageStreamMatcher ¶ added in v0.6.0
ImageStreamMatcher implements CustomMatcher for Image Streams
func (*ImageStreamMatcher) Match ¶ added in v0.6.0
func (i *ImageStreamMatcher) Match(imageStreamTag metav1.Object) ([]appsodyv1beta1.AppsodyApplication, error)
Match returns all applications using the input ImageStreamTag
type ReconcileAppsodyApplication ¶
type ReconcileAppsodyApplication struct { // This client, initialized using mgr.Client() above, is a split client // that reads objects from the cache and writes to the apiserver oputils.ReconcilerBase StackDefaults map[string]appsodyv1beta1.AppsodyApplicationSpec StackConstants map[string]*appsodyv1beta1.AppsodyApplicationSpec // contains filtered or unexported fields }
ReconcileAppsodyApplication reconciles a AppsodyApplication object
func (*ReconcileAppsodyApplication) Reconcile ¶
func (r *ReconcileAppsodyApplication) Reconcile(request reconcile.Request) (reconcile.Result, error)
Reconcile reads that state of the cluster for a AppsodyApplication object and makes changes based on the state read and what is in the AppsodyApplication.Spec Note: The Controller will requeue the Request to be processed again if the returned error is non-nil or Result.Requeue is true, otherwise upon completion it will remove the work from the queue.