9 lines
188 B
Go
9 lines
188 B
Go
package labelstructs
|
|
|
|
type CronJob struct {
|
|
Image string `yaml:"image,omitempty"`
|
|
Command string `yaml:"command"`
|
|
Schedule string `yaml:"schedule"`
|
|
Rbac bool `yaml:"rbac"`
|
|
}
|