Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func StringArrayContains ¶
Types ¶
type FileFilter ¶
func AlwaysFilter ¶
func AlwaysFilter() FileFilter
type Storage ¶
type Storage interface { // GetName returns the name of the storage secret. GetName() string // GetLatest obtains the deployment resources for the specified version GetLatest() coh.Resources // GetPrevious obtains the deployment resources for the version prior to the specified version GetPrevious() coh.Resources // Store will store the deployment resources, this will create a new version in the store Store(coh.Resources, coh.CoherenceResource) error // Destroy will destroy the store Destroy() // GetHash will return the hash label of the owning resource GetHash() (string, bool) // IsJob returns true if the Coherence deployment is a Job IsJob(reconcile.Request) bool }
Click to show internal directories.
Click to hide internal directories.