Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add content-data-api ETL cronjob. #1068

Merged
merged 1 commit into from Apr 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions charts/app-config/values-integration.yaml
Expand Up @@ -535,6 +535,10 @@ govukApplications:
name: publishing-api-consumer
- command: ['rake', 'publishing_api:bulk_import_consumer']
name: bulk-import-publishing-api-consumer
cronTasks:
- name: etl
task: "etl:main"
schedule: "22 13 * * *"
extraEnv:
- name: GOOGLE_ANALYTICS_GOVUK_VIEW_ID
valueFrom:
Expand Down
4 changes: 4 additions & 0 deletions charts/app-config/values-production.yaml
Expand Up @@ -537,6 +537,10 @@ govukApplications:
name: publishing-api-consumer
- command: ['rake', 'publishing_api:bulk_import_consumer']
name: bulk-import-publishing-api-consumer
cronTasks:
- name: etl
task: "etl:main"
schedule: "9 7 * * *"
extraEnv:
- name: GOOGLE_ANALYTICS_GOVUK_VIEW_ID
valueFrom:
Expand Down
4 changes: 4 additions & 0 deletions charts/app-config/values-staging.yaml
Expand Up @@ -546,6 +546,10 @@ govukApplications:
name: publishing-api-consumer
- command: ['rake', 'publishing_api:bulk_import_consumer']
name: bulk-import-publishing-api-consumer
cronTasks:
- name: etl
task: "etl:main"
schedule: "15 11 * * *"
extraEnv:
- name: GOOGLE_ANALYTICS_GOVUK_VIEW_ID
valueFrom:
Expand Down