mirror of
https://github.com/stakater/Reloader.git
synced 2026-02-14 18:09:50 +00:00
* separate methods * basic refactoring * moved common code to util package to use it in gateway * common check for argo rollouts * made code compilable with latest changes on master * Moved options to separate package and created CommandLineOptions instance that will be in sync with options values. * reverted extra changes * initialize CommandLineOptions with default options in module init * wait for paused at annotation before checking deployment paused * moved things around to fix things * reverted unnecessary changes * reverted rolling_upgrade changes * reverted extra change * additional checks in reloader * refactor: ShouldReloadInternal method. It will be called by Reloader ShouldReload has some additional resource/namespace filter checks which are not needed for Reloader * added test cases * moved config to sharable packae * moved resource selector and label selctor methods * fixed pipeline * removed map.yaml * removed vague comment
40 lines
900 B
Go
40 lines
900 B
Go
package common
|
|
|
|
import "time"
|
|
|
|
type ReloadSource struct {
|
|
Type string `json:"type"`
|
|
Name string `json:"name"`
|
|
Namespace string `json:"namespace"`
|
|
Hash string `json:"hash"`
|
|
ContainerRefs []string `json:"containerRefs"`
|
|
ObservedAt int64 `json:"observedAt"`
|
|
}
|
|
|
|
func NewReloadSource(
|
|
resourceName string,
|
|
resourceNamespace string,
|
|
resourceType string,
|
|
resourceHash string,
|
|
containerRefs []string,
|
|
) ReloadSource {
|
|
return ReloadSource{
|
|
ObservedAt: time.Now().Unix(),
|
|
Name: resourceName,
|
|
Namespace: resourceNamespace,
|
|
Type: resourceType,
|
|
Hash: resourceHash,
|
|
ContainerRefs: containerRefs,
|
|
}
|
|
}
|
|
|
|
func NewReloadSourceFromConfig(config Config, containerRefs []string) ReloadSource {
|
|
return NewReloadSource(
|
|
config.ResourceName,
|
|
config.Namespace,
|
|
config.Type,
|
|
config.SHAValue,
|
|
containerRefs,
|
|
)
|
|
}
|