-
Notifications
You must be signed in to change notification settings - Fork 4.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
add support for adding and removing nodes to Minikube clusters started with --no-kubernetes #16743
add support for adding and removing nodes to Minikube clusters started with --no-kubernetes #16743
Conversation
…d with --no-kubernetes
|
Hi @sfc-gh-jkowalski. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Can one of the admins verify this patch? |
@sfc-gh-jkowalski thank you for this PR, do you mind sharing, was there a real use case for this feature ? I am curious in real world how one would want this feature? |
} | ||
|
||
// otherwise just add a node without Kubernetes. | ||
return ClusterController{ |
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.
how would this affect output of "minikube profile list" ?
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.
$ minikube -p test1 start --no-kubernetes
$ minikube -p test2 start --no-kubernetes
$ minikube -p test2 node add
$ minikube -p test2 node add
$ minikube profile list
|---------|-----------|---------|---------------|------|---------|---------|-------|--------|
| Profile | VM Driver | Runtime | IP | Port | Version | Status | Nodes | Active |
|---------|-----------|---------|---------------|------|---------|---------|-------|--------|
| test1 | docker | docker | 192.168.121.2 | 8443 | N/A | Stopped | 1 | |
| test2 | docker | docker | 172.17.0.2 | 8443 | N/A | Stopped | 3 | |
|---------|-----------|---------|---------------|------|---------|---------|-------|--------|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: sfc-gh-jkowalski The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
This is mostly to be able to test our custom K8s provisioning script (using kubeadm, normally running in VMs). The plan is to provision SSH-able "nodes" (which |
@medyagh anything else you'd like me to do here? |
@medyagh gentle ping on this |
@medyagh @afbjorklund @sharifelgamal gentle ping, is there anything I can do to help get this merged? |
@spowelljr Could you, please, take a look. Kind request from 2 ex-GKE/ex-GCE ex-Googlers. Thank you. |
The Kubernetes project currently lacks enough contributors to adequately respond to all PRs. This bot triages PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
/close |
@sfc-gh-jkowalski: Closed this PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Currently,
minikube node add
andminikube node delete
fail for clusters started with--no-kubernetes
, this PR fixes that.