-
Notifications
You must be signed in to change notification settings - Fork 10
K8s docs #373
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
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fills out the introduction page, which explains what this is and a basic workflow.
kind uses containers not VMs
Co-authored-by: Morgan Helton <[email protected]>
Use the flox-kind-demo repo to give a somewhat real-world example, running a webserver with Redis
Add example page walking through kind-demo
feat: self-managed kubernetes install + upgrade + uninstall
It's not correct to say that the container image is "not used" because
it gets unpacked as the rootfs that we make changes to.
Given this spec:
```
containers:
- name: hello-empty
image: flox/empty:1.0.0
command: ["sleep", "infinity"]
- name: hello-alpine
image: alpine:3
command: ["sleep", "infinity"]
```
One uses Alpine as the base and the other doesn't:
```
% kc exec deploy/hello -c hello-alpine -- cat /etc/alpine-release
3.22.2
% kc exec deploy/hello -c hello-empty -- cat /etc/alpine-release
cat: /etc/alpine-release: No such file or directory
```
Created this ticket if we later want to implement it as a feature:
- flox/containerd-shim-flox#41
I've also renamed the container from "empty" to "echoip" to indicate
what it contains and is doing.
fix(k8s): Fix comments about container image
K8s docs polish
feat: add GitLab CI example
So that it doesn't horizontally scroll and is easier to read.
docs(k8s): Wrap flox auth token command
So that users aren't surprised by expiry and can find a more robust alternative for production use. Co-authored-by: Zach Mitchell <[email protected]>
feat: add installation troubleshooting steps
chore: make kind demo more obvious
garbas
approved these changes
Nov 10, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.