-
Notifications
You must be signed in to change notification settings - Fork 1k
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(k8s): Add Deployment Kind support for Blue/Green deployments #5830
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
8374a28
feat(k8s): Add Deployment Kind support for Blue/Green deployments
ciurescuraul 8015274
Merge branch 'master' into SPLAT-453
ciurescuraul 976f368
test(integration): test red/black deployment
ciurescuraul 5f46f95
test(integration): test blue/green deployment
ciurescuraul ecddace
refactor(web): Clean up redundant spring property in gradle file (#5834)
j-sandy 990170f
feat(kubernetes): add endpoints to allow k8s tasks to be retried by o…
dbyron-sf 7f71816
chore(dependencies): Autobump korkVersion (#5836)
spinnakerbot 7caed07
chore(dependencies): Autobump korkVersion (#5837)
spinnakerbot ecb75d0
chore(dependencies): Autobump korkVersion (#5838)
spinnakerbot 915e3c4
chore(dependencies): Autobump korkVersion (#5839)
spinnakerbot 7294894
chore(dependencies): remove dependency on groovy-all where straightfo…
dbyron-sf 3277395
Merge remote-tracking branch 'origin/SPLAT-453' into SPLAT-453
ciurescuraul File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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.
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.
This change breaks a bunch of integration tests (which unfortunately weren't required to pass before merging this PR), but also is a pretty massive behavior change. Before people who deploy a deployment named
foo
, would getfoo
. Now they getfoo-vNNN
. It also makes https://spinnaker.io/docs/reference/providers/kubernetes-v2/#workloads incorrect for Deployments. I'm not sure how critical this change is to this PR....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.
PR to revert this one: #5843