Skip to content

Commit 0deadf7

Browse files
fix: labels are strings (#3120)
This fixes what was introduced in #3118 Labels must be strings not ints. Based on `terraform plan`, this is no-op, but is intended to address the Cloud Deploy failure encountered.
1 parent 3f43d06 commit 0deadf7

16 files changed

+16
-16
lines changed

deployment/clouddeploy/gke-workers/base/alias-computation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: CronJob
33
metadata:
44
name: alias-computation
55
labels:
6-
cronLastSuccessfulTimeMins: 45
6+
cronLastSuccessfulTimeMins: "45"
77
spec:
88
schedule: "10/15 * * * *"
99
concurrencyPolicy: Forbid

deployment/clouddeploy/gke-workers/base/alpine-cve-convert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: CronJob
33
metadata:
44
name: alpine-cve-convert
55
labels:
6-
cronLastSuccessfulTimeMins: 180
6+
cronLastSuccessfulTimeMins: "180"
77
spec:
88
schedule: "0 */1 * * *"
99
concurrencyPolicy: Forbid

deployment/clouddeploy/gke-workers/base/backup.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: CronJob
33
metadata:
44
name: backup
55
labels:
6-
cronLastSuccessfulTimeMins: 2880
6+
cronLastSuccessfulTimeMins: "2880"
77
spec:
88
schedule: "0 18 * * *"
99
concurrencyPolicy: Forbid

deployment/clouddeploy/gke-workers/base/combine-to-osv.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: CronJob
33
metadata:
44
name: combine-to-osv
55
labels:
6-
cronLastSuccessfulTimeMins: 90
6+
cronLastSuccessfulTimeMins: "90"
77
spec:
88
schedule: "30 */1 * * *"
99
concurrencyPolicy: Forbid

deployment/clouddeploy/gke-workers/base/cpe-repo-gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: CronJob
33
metadata:
44
name: cpe-repo-gen
55
labels:
6-
cronLastSuccessfulTimeMins: 2880
6+
cronLastSuccessfulTimeMins: "2880"
77
spec:
88
schedule: "0 6 */1 * *"
99
concurrencyPolicy: Forbid

deployment/clouddeploy/gke-workers/base/debian-convert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: CronJob
33
metadata:
44
name: debian-convert
55
labels:
6-
cronLastSuccessfulTimeMins: 180
6+
cronLastSuccessfulTimeMins: "180"
77
spec:
88
schedule: "0 */1 * * *"
99
concurrencyPolicy: Forbid

deployment/clouddeploy/gke-workers/base/debian-copyright-mirror.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: CronJob
33
metadata:
44
name: debian-copyright-mirror
55
labels:
6-
cronLastSuccessfulTimeMins: 2880
6+
cronLastSuccessfulTimeMins: "2880"
77
spec:
88
schedule: "0 6 */1 * *"
99
concurrencyPolicy: Forbid

deployment/clouddeploy/gke-workers/base/debian-cve-convert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: CronJob
33
metadata:
44
name: debian-cve-convert
55
labels:
6-
cronLastSuccessfulTimeMins: 120
6+
cronLastSuccessfulTimeMins: "120"
77
spec:
88
schedule: "0 */1 * * *"
99
concurrencyPolicy: Forbid

deployment/clouddeploy/gke-workers/base/debian-first-version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: CronJob
33
metadata:
44
name: debian-first-version
55
labels:
6-
cronLastSuccessfulTimeMins: 120
6+
cronLastSuccessfulTimeMins: "120"
77
spec:
88
schedule: "0 1 * * *"
99
concurrencyPolicy: Forbid

deployment/clouddeploy/gke-workers/base/exporter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: CronJob
33
metadata:
44
name: exporter
55
labels:
6-
cronLastSuccessfulTimeMins: 90
6+
cronLastSuccessfulTimeMins: "90"
77
spec:
88
schedule: "*/30 * * * *"
99
concurrencyPolicy: Forbid

0 commit comments

Comments
 (0)