Skip to content

Conversation

@p172913
Copy link

@p172913 p172913 commented Nov 18, 2025

What type of PR is this?
/kind enhancement

What this PR does / why we need it:

macOS 13 support removed and updated macOS 13 to macOS 15 along with updated docs to macOS 14

Which issue(s) this PR fixes:
Fixes #21666

Special notes for your reviewer:
None

Does this PR introduce a user-facing change?
None

Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:
None

@k8s-ci-robot
Copy link
Contributor

@p172913: The label(s) kind/enhancement cannot be applied, because the repository doesn't have them.

In response to this:

What type of PR is this?
/kind enhancement

What this PR does / why we need it:

macOS 13 support removed and updated macOS 13 to macOS 15 along with updated docs to macOS 14

Which issue(s) this PR fixes:
Fixes #21666

Special notes for your reviewer:
None

Does this PR introduce a user-facing change?
None

Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:
None

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-sigs/prow repository.

@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label Nov 18, 2025
@k8s-ci-robot k8s-ci-robot requested review from medyagh and nirs November 18, 2025 07:00
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: p172913
Once this PR has been reviewed and has the lgtm label, please assign medyagh for approval. For more information see the Code Review Process.

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 /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added the needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. label Nov 18, 2025
@k8s-ci-robot
Copy link
Contributor

Hi @p172913. Thanks for your PR.

I'm waiting for a github.com member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

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-sigs/prow repository.

@k8s-ci-robot k8s-ci-robot added the size/M Denotes a PR that changes 30-99 lines, ignoring generated files. label Nov 18, 2025
@minikube-bot
Copy link
Collaborator

Can one of the admins verify this patch?

@p172913
Copy link
Author

p172913 commented Nov 26, 2025

@nirs, @medyagh can you please review this PR...

@p172913
Copy link
Author

p172913 commented Dec 1, 2025

@nirs , @medyagh can you please review this PR...

Copy link
Contributor

@nirs nirs left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@p172913 thanks!

driver: qemu
cruntime: docker
os: macos-13
os: macos-15
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is wrong - macos-15 runniner is M1 which does not support virtualization, so this test will fail. We need to replace macos-13 with macos-15-intel. We don't have macos-14-intel runners.

CHANGELOG.md Outdated
* Update Windows installer to create system-wide shortcut [#15405](https://github.com/kubernetes/minikube/pull/15405)
* Add `--subnet` validation [#15530](https://github.com/kubernetes/minikube/pull/15530)
* Warn users if using VirtualBox on macOS 13+ [#15624](https://github.com/kubernetes/minikube/pull/15624)
* Warn users if using VirtualBox on macos 14+ [#15624](https://github.com/kubernetes/minikube/pull/15624)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We cannot change the changelog, remove this change.

return
}
out.WarningT(`Due to changes in macOS 13+ minikube doesn't currently support VirtualBox. You can use alternative drivers such as 'vfkit', 'qemu', or 'docker'.
out.WarningT(`Due to changes in macos 14+ minikube doesn't currently support VirtualBox. You can use alternative drivers such as 'vfkit', 'qemu', or 'docker'.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't want to change this warning - it is about a change in macOS 13+ - it is still true today.

}

// MacOS13Plus returns if the current machine is running macOS 13+
// MacOS13Plus returns if the current machine is running macos 14+
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You change the comment but the function name is still the same. Consider changing it to MacOS14Plus() and update the version check, it should be:

major >= 14

"Due to changes in macOS 13+ minikube doesn't currently support VirtualBox. You can use alternative drivers such as 'vfkit', 'qemu', or 'docker'.\n https://minikube.sigs.k8s.io/docs/drivers/vfkit/\n https://minikube.sigs.k8s.io/docs/drivers/qemu/\n https://minikube.sigs.k8s.io/docs/drivers/docker/\n For more details on the issue see: https://github.com/kubernetes/minikube/issues/15274\n": "",
"Due to changes in macOS 13+ minikube doesn't currently support VirtualBox. You can use alternative drivers such as docker or {{.driver}}.\n https://minikube.sigs.k8s.io/docs/drivers/docker/\n https://minikube.sigs.k8s.io/docs/drivers/{{.driver}}/\n\n For more details on the issue see: https://github.com/kubernetes/minikube/issues/15274\n": "Aufgrund von Änderungen in macOS 13+ unterstützt Minikube derzeit VirtualBox nicht. Sie können alternative Treiber verwenden, wie z.B. Docker oder {{.driver}}.\nhttps://minikube.sigs.k8s.io/docs/drivers/docker/\n https://minikube.sigs.k8s.io/docs/drivers/{{.driver}}/\n\n Weitere Informationen finden sich in folgendem Issue: https://github.com/kubernetes/minikube/issues/15274\n",
"Due to changes in macos 14+ minikube doesn't currently support VirtualBox. You can use alternative drivers such as 'vfkit', 'qemu', or 'docker'.\n https://minikube.sigs.k8s.io/docs/drivers/vfkit/\n https://minikube.sigs.k8s.io/docs/drivers/qemu/\n https://minikube.sigs.k8s.io/docs/drivers/docker/\n For more details on the issue see: https://github.com/kubernetes/minikube/issues/15274\n": "",
"Due to changes in macos 14+ minikube doesn't currently support VirtualBox. You can use alternative drivers such as docker or {{.driver}}.\n https://minikube.sigs.k8s.io/docs/drivers/docker/\n https://minikube.sigs.k8s.io/docs/drivers/{{.driver}}/\n\n For more details on the issue see: https://github.com/kubernetes/minikube/issues/15274\n": "Aufgrund von Änderungen in macos 14+ unterstützt Minikube derzeit VirtualBox nicht. Sie können alternative Treiber verwenden, wie z.B. Docker oder {{.driver}}.\nhttps://minikube.sigs.k8s.io/docs/drivers/docker/\n https://minikube.sigs.k8s.io/docs/drivers/{{.driver}}/\n\n Weitere Informationen finden sich in folgendem Issue: https://github.com/kubernetes/minikube/issues/15274\n",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove all the translations changes. These files will be regenerated automatically if related string in the code change.

Copy link
Contributor

@nirs nirs left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please address comments and squash all commit to one.

If you want to split this to multiple commit, you can split to:

  • GitHub workflow changes
  • Other changes

But this is a very small change and one commit is fine.

driver: vfkit
cruntime: docker
os: macos-13
os: macos-15
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This cannot work for vfkit for the same reason it can't work for qemu.

- name: Ensure bootpd is enabled (macos-13)
if: matrix.os == 'macos-13'
- name: Ensure bootpd is enabled (macos-15)
if: matrix.os == 'macos-15'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This entire step can be removed, not needed since macOS 15

kubectl version --client=true
- name: Install qemu and socket_vmnet (macos)
if: matrix.os == 'macos-13' && matrix.driver == 'qemu'
if: matrix.os == 'macos-15' && matrix.driver == 'qemu'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

macos-15-intel

HOMEBREW=$(which brew) && sudo ${HOMEBREW} services start socket_vmnet
- name: Install vfkit and vmnet_helper (macos)
if: matrix.os == 'macos-13' && matrix.driver == 'vfkit'
if: matrix.os == 'macos-15' && matrix.driver == 'vfkit'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

macos-15-intel

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Match the changes to functional tests in this file, replacing macos-13 with macos-15-intel and removing bootpd step.

return
}
out.WarningT(`Due to changes in macOS 13+ minikube doesn't currently support VirtualBox. You can use alternative drivers such as 'vfkit', 'qemu', or 'docker'.
out.WarningT(`Due to changes in macos 13+ minikube doesn't currently support VirtualBox. You can use alternative drivers such as 'vfkit', 'qemu', or 'docker'.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove this change, the right spelling is macOS.


// MacOS13Plus returns if the current machine is running macOS 13+
func MacOS13Plus() bool {
// MacOS14Plus returns if the current machine is running macos 14+
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

comment: macOS not macOS

function name: you rename the function, but did not change the callers of this function. Please update the callers, and if this function is not used delete the function.

CHANGELOG.md Outdated
* Update Windows installer to create system-wide shortcut [#15405](https://github.com/kubernetes/minikube/pull/15405)
* Add `--subnet` validation [#15530](https://github.com/kubernetes/minikube/pull/15530)
* Warn users if using VirtualBox on macOS 13+ [#15624](https://github.com/kubernetes/minikube/pull/15624)
* Warn users if using VirtualBox on macos 13+ [#15624](https://github.com/kubernetes/minikube/pull/15624)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove this change, we don't change the changelog.

@p172913 p172913 closed this by deleting the head repository Dec 2, 2025
@p172913
Copy link
Author

p172913 commented Dec 2, 2025

Squashing commit giving merger issue with others commits. So, created new PR #22027.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. size/M Denotes a PR that changes 30-99 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Remove support for macOS 13

4 participants