Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

fixed typos in annotations #60

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ type CronJobDescriptor struct {
type CronJob struct {
baseWorkload `yaml:"baseWorkload,inline"`
CronJobConfig *CronJobConfig `json:"cronJobConfig,omitempty" yaml:"cronJobConfig,omitempty"`
TTLSecondsAfterFinished *int64 `yaml:"TTLSecondsAfterFinished,omitempty"`
TTLSecondsAfterFinished *int64 `yaml:"ttlSecondsAfterFinished,omitempty"`
}

type CronJobConfig struct {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ type JobDescriptor struct {
type Job struct {
baseWorkload `yaml:"baseWorkload,inline"`
JobConfig *JobConfig `json:"jobConfig,omitempty" yaml:"jobConfig,omitempty"`
TTLSecondsAfterFinished *int64 `yaml:"TTLSecondsAfterFinished,omitempty"`
TTLSecondsAfterFinished *int64 `yaml:"ttlSecondsAfterFinished,omitempty"`
}

type JobConfig struct {
Expand Down