| 29 | ) |
| 30 | |
| 31 | type CronJobItem interface { |
| 32 | GetName() string |
| 33 | ImageInfos() []string |
| 34 | GetSchedule() string |
| 35 | GetSuspend() bool |
| 36 | GetActive() int |
| 37 | GetLastSchedule() string |
| 38 | GetAge() string |
| 39 | GetCreationTime() time.Time |
| 40 | GetAnnotations() map[string]string |
| 41 | } |
| 42 | |
| 43 | type cronJob struct { |
| 44 | *batchv1.CronJob |
no outgoing calls
no test coverage detected