-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
update docs, and remove some unused code related to "compose on kubernetes" deprecation #3440
Conversation
thaJeztah
commented
Feb 24, 2022
- Follow up to Drop support for (archived) Compose-on-Kubernetes #3139
- Addresses Drop Kubernetes support (compose-on-kubernetes is now unmaintained & archived) #2967
* mode (`--filter mode=replicated`, or `--filter mode=global`) | ||
* Swarm: not supported | ||
* Kubernetes: supported | ||
* name (`--filter name=myapp_web`) | ||
* Swarm: supported | ||
* Kubernetes: supported | ||
* node (`--filter node=mynode`) | ||
* Swarm: not supported | ||
* Kubernetes: supported | ||
* service (`--filter service=web`) | ||
* Swarm: not supported |
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.
Some follow-up needed after this; need to check if these options are indeed no longer supported (as they're marked as "not supported" by swarm)
"Description": "Local Docker Engine + Azure AKS endpoint", | ||
"StackOrchestrator": "kubernetes" | ||
"Description": "Local Docker Engine", | ||
"StackOrchestrator": "swarm" |
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.
Need to check how this is used, but possibly we could/should reset this field and hide it
Codecov Report
@@ Coverage Diff @@
## master #3440 +/- ##
==========================================
- Coverage 58.29% 58.28% -0.01%
==========================================
Files 287 285 -2
Lines 24142 24134 -8
==========================================
- Hits 14073 14067 -6
+ Misses 9210 9207 -3
- Partials 859 860 +1 |
Hm... looks like this one has become flaky indeed; I opened a ticket for tracking: #3441
|
oh; let me make one more change in the first commit |
Removes the --kubeconfig flag, and the corresponding ExportOptions.Kubeconfig, as well as special handling for kubeconfig export, as it's no longer used. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
It was now an alias for getStackFilter, so no longer needed Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Removes the flags that have been deprecated or removed; - --default-stack-orchestrator - --kubernetes - --kubeconfig - --namespace - --orchestrator Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Remove mentions of which options are supported by Kubernetes. Note that there's some filters remaining that were marked as "not supported by swarm": those filters need to be checked if this is accurate (and if so, those filters must be removed). Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Explicitly mention flags and environment variables that were removed, to make the deprecation more discoverable. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
f03fb19
to
b7d0f5c
Compare
ok 👍 updated |
oh, of course, found one more thing; there's |
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Thanks for reviewing; let me get this one in |