diff --git a/types/tracked_images.go b/types/tracked_images.go index e4de0eae..b92bf74c 100644 --- a/types/tracked_images.go +++ b/types/tracked_images.go @@ -4,9 +4,15 @@ import ( "github.com/rusenask/keel/util/image" ) +type Credentials struct { + Username, Password string +} + type TrackedImage struct { Image *image.Reference Trigger TriggerType PollSchedule string Provider string + Namespace string + Secrets []string }