mirror of
https://github.com/google/nomulus.git
synced 2025-04-30 12:07:51 +02:00
Release ValidateSqlPipeline as container image (#1504)
* Release ValidateSqlPipeline as container image
This commit is contained in:
parent
62b2c18791
commit
ac2c08b6e1
3 changed files with 29 additions and 1 deletions
|
@ -801,6 +801,11 @@ if (environment == 'alpha') {
|
||||||
mainClass: 'google.registry.beam.comparedb.ValidateDatastorePipeline',
|
mainClass: 'google.registry.beam.comparedb.ValidateDatastorePipeline',
|
||||||
metaData: 'google/registry/beam/validate_datastore_pipeline_metadata.json'
|
metaData: 'google/registry/beam/validate_datastore_pipeline_metadata.json'
|
||||||
],
|
],
|
||||||
|
validateSql :
|
||||||
|
[
|
||||||
|
mainClass: 'google.registry.beam.comparedb.ValidateSqlPipeline',
|
||||||
|
metaData: 'google/registry/beam/validate_sql_pipeline_metadata.json'
|
||||||
|
],
|
||||||
]
|
]
|
||||||
project.tasks.create("stageBeamPipelines") {
|
project.tasks.create("stageBeamPipelines") {
|
||||||
doLast {
|
doLast {
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"name": "Validate Cloud SQL with Datastore being primary",
|
||||||
|
"description": "An Apache Beam batch pipeline that compares Cloud SQL with the primary Datastore.",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"name": "registryEnvironment",
|
||||||
|
"label": "The Registry environment.",
|
||||||
|
"helpText": "The Registry environment.",
|
||||||
|
"is_optional": false,
|
||||||
|
"regexes": [
|
||||||
|
"^PRODUCTION|SANDBOX|CRASH|QA|ALPHA$"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "comparisonStartTimestamp",
|
||||||
|
"label": "Only entities updated at or after this time are included for validation.",
|
||||||
|
"helpText": "The earliest entity update time allowed for inclusion in validation, in ISO8601 format.",
|
||||||
|
"is_optional": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -98,7 +98,9 @@ steps:
|
||||||
google.registry.beam.rde.RdePipeline \
|
google.registry.beam.rde.RdePipeline \
|
||||||
google/registry/beam/rde_pipeline_metadata.json \
|
google/registry/beam/rde_pipeline_metadata.json \
|
||||||
google.registry.beam.comparedb.ValidateDatastorePipeline \
|
google.registry.beam.comparedb.ValidateDatastorePipeline \
|
||||||
google/registry/beam/validate_datastore_pipeline_metadata.json
|
google/registry/beam/validate_datastore_pipeline_metadata.json \
|
||||||
|
google.registry.beam.comparedb.ValidateSqlPipeline \
|
||||||
|
google/registry/beam/validate_sql_pipeline_metadata.json
|
||||||
# Tentatively build and publish Cloud SQL schema jar here, before schema release
|
# Tentatively build and publish Cloud SQL schema jar here, before schema release
|
||||||
# process is finalized. Also publish nomulus:core jars that are needed for
|
# process is finalized. Also publish nomulus:core jars that are needed for
|
||||||
# server/schema compatibility tests.
|
# server/schema compatibility tests.
|
||||||
|
|
Loading…
Add table
Reference in a new issue