Skip to content

Commit b09d2d9

Browse files
authored
Add lifecycle_type backfill clock job (#661)
This is a one-off backfill and will be removed in a future version.
1 parent fe02c5d commit b09d2d9

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

jobs/cloud_controller_clock/spec

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,11 @@ properties:
149149
description: "How often operations stuck in state 'in progress' should be cleaned up."
150150
default: 3600 # 1 hour
151151

152+
# One-off backfill - to be removed in a future version.
153+
cc.lifecycle_type_backfill.frequency_in_seconds:
154+
description: "How often the one-off lifecycle_type backfill job runs"
155+
default: 3600 # 1 hour
156+
152157
cc.external_protocol:
153158
default: "https"
154159
description: "The protocol used to access the CC API from an external entity"

jobs/cloud_controller_clock/templates/cloud_controller_ng.yml.erb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,9 @@ pending_builds:
127127
diego_sync:
128128
frequency_in_seconds: <%= p("cc.diego_sync.frequency_in_seconds") %>
129129

130+
# One-off backfill - to be removed in a future version.
131+
lifecycle_type_backfill:
132+
frequency_in_seconds: <%= p("cc.lifecycle_type_backfill.frequency_in_seconds") %>
130133

131134
nginx:
132135
use_nginx: true

0 commit comments

Comments
 (0)