Drop support for blue_green_update #113
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Drop support for
blue_green_update
, useblue_green_deployment
instead.APPSRE-11434
This pull request includes several changes to various files, primarily focusing on updating labels and version numbers, modifying type hints in the
er_aws_rds/input.py
file, and removing theblue_green_update
feature. Additionally, a new test has been added to validate the removal ofblue_green_update
.Version and Label Updates:
Dockerfile
: Updatedkonflux.additional-tags
label from "0.6.1" to "0.6.2".pyproject.toml
: Updated project version from "0.6.1" to "0.6.2".Type Hint Modifications:
er_aws_rds/input.py
: Changed return type hints from"Rds"
toSelf
in multiple methods to improve type consistency. [1] [2] [3] [4] [5] [6] [7] [8]Feature Removal:
module/basic_instance.tftest.hcl
: Removed theblue_green_update
variable.module/main.tf
: Removed theblue_green_update
dynamic block.Test Additions:
tests/test_input_validation.py
: Added a new testtest_validate_blue_green_update
to ensureblue_green_update
is not supported and raises the appropriate validation error.