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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate seed connector specs on build #7501

Merged
merged 28 commits into from
Nov 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
092ac43
add specs module with logic to fetch specs on build
lmossman Oct 28, 2021
645c4ae
format + build and add gradle dependency for new script
lmossman Oct 28, 2021
90a52a1
check seed file for existing specs + refactor
lmossman Oct 29, 2021
fc4f133
add tests + a bit more refactoring
lmossman Oct 29, 2021
9e27fab
run gw format
lmossman Oct 29, 2021
79365e0
update yaml config persistence to merge specs into definitions
lmossman Oct 29, 2021
7f8d6d3
add comment
lmossman Oct 29, 2021
6fc04d7
merge with master
lmossman Oct 29, 2021
e868c78
delete secrets migration to be consistent with master
lmossman Oct 30, 2021
943eb25
add dep
lmossman Oct 30, 2021
805c818
add tests for GcsBucketSpecFetcher
lmossman Nov 1, 2021
007b112
get rid of static block + format
lmossman Nov 1, 2021
53ab6ed
Merge branch 'master' into lmossman/fetch-seed-specs-on-build
lmossman Nov 1, 2021
9bb59f9
DRY up parse call
lmossman Nov 1, 2021
30016e8
add GCS details to comment
lmossman Nov 1, 2021
9b44bdf
formatting + fix test
lmossman Nov 1, 2021
891b841
update comment
lmossman Nov 1, 2021
59ad7e6
do not format seed specs files
lmossman Nov 1, 2021
8b5619d
change signature of run to allow cloud to reuse this script
lmossman Nov 1, 2021
81d33ee
run gw format
lmossman Nov 1, 2021
7eb4ed1
revert commits that change signature of run
lmossman Nov 1, 2021
112d197
fix comment typo
lmossman Nov 2, 2021
ab2b35c
rename enum to be distinct from the enum in cloud
lmossman Nov 2, 2021
b812b75
add missing dependencies between modules
lmossman Nov 2, 2021
6cec994
add readme for seed connector spec generator
lmossman Nov 2, 2021
b81e0fa
reword
lmossman Nov 2, 2021
a8ceffb
reference readme in comment
lmossman Nov 2, 2021
f02e8a3
ignore 'spec' field in newFields logic
lmossman Nov 2, 2021
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 @@ -7,7 +7,9 @@
public enum SeedType {

STANDARD_SOURCE_DEFINITION("/seed/source_definitions.yaml", "sourceDefinitionId"),
STANDARD_DESTINATION_DEFINITION("/seed/destination_definitions.yaml", "destinationDefinitionId");
STANDARD_DESTINATION_DEFINITION("/seed/destination_definitions.yaml", "destinationDefinitionId"),
SOURCE_SPEC("/seed/source_specs.yaml", "dockerImage"),
DESTINATION_SPEC("/seed/destination_specs.yaml", "dockerImage");

final String resourcePath;
// ID field name
Expand Down
Loading