-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
RecordSet
support for route53 controller (#31)
**Issue**: aws-controllers-k8s/community#1545 **Description of changes**: Adds support for RecordSets in Route53 and corresponding E2E tests. This includes support for all record types and routing policies. Some previous conversations for how to implement this were discussed here: - https://kubernetes.slack.com/archives/C0402D8JJS1/p1694054604699869 - https://kubernetes.slack.com/archives/C0402D8JJS1/p1695030078194489 Changes made to following files/directories (other changes are all code-gen'ed): - generator.yaml - pkg/resource/record_set/hooks.go - templates/hooks/record_set/ - test/e2e/ Generator results: ``` make build-controller SERVICE=route53 building ack-generate ... ok. ==== building route53-controller ==== Copying common custom resource definitions into route53 Building Kubernetes API objects for route53 Generating deepcopy code for route53 Generating custom resource definitions for route53 Building service controller for route53 Generating RBAC manifests for route53 Running gofmt against generated code for route53 Updating additional GitHub repository maintenance files ==== building route53-controller release artifacts ==== Building release artifacts for route53-v0.0.8 Generating common custom resource definitions Generating custom resource definitions for route53 Generating RBAC manifests for route53 ``` E2E results: ``` [gw1] [ 25%] PASSED tests/test_hosted_zone.py::TestHostedZone::test_create_delete_private [gw0] [ 50%] PASSED tests/test_hosted_zone.py::TestHostedZone::test_create_delete_public [gw2] [ 75%] PASSED tests/test_hosted_zone.py::TestHostedZone::test_crud_tags [gw4] [100%] PASSED tests/test_record_set.py::TestRecordSet::test_crud_simple_record ``` By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
- Loading branch information
Showing
36 changed files
with
5,224 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
ack_generate_info: | ||
build_date: "2023-09-14T23:39:01Z" | ||
build_hash: 892f29d00a4c4ad21a2fa32919921de18190979d | ||
build_date: "2023-11-08T12:14:15Z" | ||
build_hash: 5237888d7dc7edb63fc1b36da5c49e3f258cc45d | ||
go_version: go1.21.0 | ||
version: v0.27.1 | ||
api_directory_checksum: 2f681761d3417cd3c65709b6dc71d9853bdf0481 | ||
version: v0.27.1-4-g5237888 | ||
api_directory_checksum: 5a419e4b3bdc623d981b9ee5d0ef847bd4dc0bba | ||
api_version: v1alpha1 | ||
aws_sdk_go_version: v1.44.93 | ||
generator_config_info: | ||
file_checksum: e4f89494b4e355fb756095b55c95050a23efa0b3 | ||
file_checksum: 3120a47920b44a81bac54b6e49261a4592315002 | ||
original_file_name: generator.yaml | ||
last_modification: | ||
reason: API generation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.