-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Fix Windows Compatibility: Symlink Handling, Permission Fixes, and Test Stability Improvements #2428
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
base: master
Are you sure you want to change the base?
Fix Windows Compatibility: Symlink Handling, Permission Fixes, and Test Stability Improvements #2428
Conversation
- Create setup-windows-dev.py to handle symlink issues on Windows - Script replaces symlink directories with actual directories - Enables 'pip install -e .' and test execution on Windows - Addresses issue kubernetes-client#2427 point 1
- Add Windows-specific handling for temporary file creation - Skip tests gracefully when permission errors occur on Windows - Addresses issue kubernetes-client#2427 point 3
- Add Windows-specific handling for temporary file creation - Skip tests gracefully when permission errors occur on Windows - Addresses issue kubernetes-client#2427 point 3
- Create comprehensive Windows development documentation - Include setup instructions and known issue solutions - Provide troubleshooting guide for Windows contributors - Addresses issue kubernetes-client#2427 documentation needs
…tch, symlink, temp file handling)
The committers listed above are authorized under a signed CLA. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: PraveenMudalgeri 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 |
Welcome @PraveenMudalgeri! |
/release-note-none |
What type of PR is this?
/kind bug
/kind cleanup
/kind documentation
What this PR does / why we need it
This PR fixes multiple Windows-specific issues in the Kubernetes Python client repository to improve developer experience, test stability, and compatibility on Windows systems.
Windows environments have limited support for Unix-style symbolic links, and strict file permission semantics caused test failures. Additionally, streaming tests sometimes hung or failed due to differences in environment.
This PR introduces fixes and workarounds for these problems, enabling smooth local development and CI testing on Windows.
Which issue(s) this PR fixes
Fixes #2427
Resolves Windows compatibility issues related to symlinks, file permissions, and flaky tests.
Special notes for your reviewer
Does this PR introduce a user-facing change?
Fix Windows-specific development environment and test suite issues:
Additional documentation
Added
WINDOWS_DEVELOPMENT.md
with detailed instructions and troubleshooting steps for setting up development and running tests on Windows platforms.