Skip to content
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 setting kubelet root directory #5186

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

ncopa
Copy link
Collaborator

@ncopa ncopa commented Nov 7, 2024

Description

Storage drivers and others may hard code /var/lib/kubelet which
conflicts with the k0s default /var/lib/k0s/kubelet. Allow users to
override the kubelet root directory with --kubelet-root-dir similar to
the way they can override --data-dir.

For backwards compatibility we keep the default to be <datadir>/kubelet.

Also fix unmounting when deleting directories in k0s reset while at it.

Fixes #1842
Fixes #4318

Type of change

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • Documentation update

How Has This Been Tested?

  • Manual test
  • Auto test added

Checklist:

  • My code follows the style guidelines of this project
  • My commit messages are signed-off
  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • New and existing unit tests pass locally with my changes
  • Any dependent changes have been merged and published in downstream modules
  • I have checked my code and corrected any misspellings

Use k0sVars.DataDir instead of copying it to dataDir to improve
readability.

No functional changes.

Signed-off-by: Natanael Copa <[email protected]>
@ncopa ncopa requested review from a team as code owners November 7, 2024 12:25
@ncopa ncopa marked this pull request as draft November 7, 2024 12:25
@ncopa ncopa added this to the 1.32 milestone Nov 7, 2024
@ncopa ncopa force-pushed the kubelet-root-dir branch 2 times, most recently from 78c3f73 to 2a4a99e Compare November 7, 2024 20:04
Storage drivers and others may hardcode /var/lib/kubelet which
confilicts with the k0s default /var/lib/k0s/kubelet. Allow users to
override the kubelet root directory with --kubelet-root-dir similar to
the way they can override --data-dir.

ref: https://cep.dev/posts/adventure-trying-change-kubelet-rootdir/

fixes k0sproject#1842

Signed-off-by: Natanael Copa <[email protected]>
Use --kubelet-root-dir for the inttests:
- kubeletcertrotate
- reset

Signed-off-by: Natanael Copa <[email protected]>
ncopa and others added 2 commits November 8, 2024 08:35
Make sure that we don't have anything mounted under those directories so
we don't delete persistent data.

We do this py parsing /proc/mounts in reverse order as it is listed in
mount order, and then we unmount anything that is under our directories
before we delete them.

Don't umount datadir itself if it is on a separate partition/mount

Fixes k0sproject#4318

Signed-off-by: Natanael Copa <[email protected]>
Add a script to the reset integration test that tries to clutter the
data directory by placing files and directories with odd permissions,
adding symlinks to stuff outside the data directory, and adding bind
mounts in various ways.

This is to prove that k0's reset will never delete anything that is not
beneath the data directory.

Signed-off-by: Tom Wieczorek <[email protected]>
Copy link
Contributor

This pull request has merge conflicts that need to be resolved.

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

Successfully merging this pull request may close these issues.

k0s reset deleted all data on persistent volumes k0s should move /var/lib/k0s/kubelet to /var/lib/kubelet
2 participants