-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
feat: Upgrade bluegreen example using new gitops bridge #1769
Merged
csantanapr
merged 5 commits into
aws-ia:main
from
allamand:upgrade_bluegreen_on_gitops_bridge
Sep 22, 2023
Merged
feat: Upgrade bluegreen example using new gitops bridge #1769
csantanapr
merged 5 commits into
aws-ia:main
from
allamand:upgrade_bluegreen_on_gitops_bridge
Sep 22, 2023
Conversation
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
allamand
had a problem deploying
to
EKS Blueprints Test
September 20, 2023 10:06 — with
GitHub Actions
Error
allamand
force-pushed
the
upgrade_bluegreen_on_gitops_bridge
branch
from
September 20, 2023 19:07
5e9247f
to
0d4a89f
Compare
allamand
had a problem deploying
to
EKS Blueprints Test
September 20, 2023 19:07 — with
GitHub Actions
Error
allamand
had a problem deploying
to
EKS Blueprints Test
September 22, 2023 07:11 — with
GitHub Actions
Error
allamand
had a problem deploying
to
EKS Blueprints Test
September 22, 2023 08:09 — with
GitHub Actions
Error
allamand
temporarily deployed
to
EKS Blueprints Test
September 22, 2023 10:07 — with
GitHub Actions
Inactive
csantanapr
approved these changes
Sep 22, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work @allamand using the new GitOps Bridge 🎉
flavono123
added a commit
to flavono123/terraform-aws-eks-blueprints
that referenced
this pull request
Dec 12, 2023
- in m1 macos, cannot initialize eks-blue/green stacks in the blue-green-upgrade pattern ```sh $ cd patterns/eks-blue-green-upgrade/eks-blue $ terraform init ... ╷ │ Error: Incompatible provider version │ │ Provider registry.terraform.io/hashicorp/template v2.2.0 does not have a package available for your current platform, darwin_arm64. │ │ Provider releases are separate from Terraform CLI releases, so not all providers are available for all platforms. Other versions of this │ provider may have different platforms supported. ╵ ``` - the hashicorp/template provider is deprecated and not supported in m1 macos - ref. https://discuss.hashicorp.com/t/template-v2-2-0-does-not-have-a-package-available-mac-m1/35099 - also the provider is not used in the module - it seems was added at aws-ia#1769(2e09cf8) for debugging - the output for debugging is commented out; not used - removed deprecated, unused hashicorp/template provider - removed the comments in output Signed-off-by: flavono123 <[email protected]>
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
This PR update the blue-green-upgrade sample to uses the new GitOps bridge.
Motivation and Context
This changes will allow users to :
How was this change tested?
pre-commit run -a
with this PRAdditional Notes