-
Notifications
You must be signed in to change notification settings - Fork 36
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
feat(daemon-set): introduce L2 #504
Conversation
Signed-off-by: iliapolo <epolon@amazon.com>
* A DaemonSet ensures that all (or some) Nodes run a copy of a Pod. | ||
* As nodes are added to the cluster, Pods are added to them. | ||
* As nodes are removed from the cluster, those Pods are garbage collected. | ||
* Deleting a DaemonSet will clean up the Pods it created. |
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.
Very helpful description 🙌
Signed-off-by: github-actions <github-actions@github.com>
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-k8s-21/main k8s-21/main
# Navigate to the new working tree
cd .worktrees/backport-k8s-21/main
# Create a new branch
git switch --create backport-504-to-k8s-21/main
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick --mainline 1 fbc9f0ad4d8318a8d11d47186f7f55c69e0466ba
# Push it to GitHub
git push --set-upstream origin backport-504-to-k8s-21/main
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-k8s-21/main Then, create a pull request where the |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-k8s-20/main k8s-20/main
# Navigate to the new working tree
cd .worktrees/backport-k8s-20/main
# Create a new branch
git switch --create backport-504-to-k8s-20/main
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick --mainline 1 fbc9f0ad4d8318a8d11d47186f7f55c69e0466ba
# Push it to GitHub
git push --set-upstream origin backport-504-to-k8s-20/main
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-k8s-20/main Then, create a pull request where the |
Resolves #375 Note that I intentionally only added support for pod spec and `minReadySeconds` to get something out quickly. Other properties will be added at a later time. (cherry picked from commit fbc9f0a) Signed-off-by: Eli Polonsky <epolon@amazon.com> # Conflicts: # docs/java.md # docs/python.md # docs/typescript.md
💚 All backports created successfully
Questions ?Please refer to the Backport tool documentation |
Resolves #375 Note that I intentionally only added support for pod spec and `minReadySeconds` to get something out quickly. Other properties will be added at a later time. (cherry picked from commit fbc9f0a) Signed-off-by: Eli Polonsky <epolon@amazon.com> # Conflicts: # docs/java.md # docs/python.md # docs/typescript.md
💚 All backports created successfully
Questions ?Please refer to the Backport tool documentation |
Resolves #375 Note that I intentionally only added support for pod spec and `minReadySeconds` to get something out quickly. Other properties will be added at a later time. (cherry picked from commit fbc9f0a) Signed-off-by: Eli Polonsky <epolon@amazon.com> # Conflicts: # docs/java.md # docs/python.md # docs/typescript.md
Resolves #375 Note that I intentionally only added support for pod spec and `minReadySeconds` to get something out quickly. Other properties will be added at a later time. (cherry picked from commit fbc9f0a) Signed-off-by: Eli Polonsky <epolon@amazon.com> # Conflicts: # docs/java.md # docs/python.md # docs/typescript.md
Resolves #375
Note that I intentionally only added support for pod spec and
minReadySeconds
to get something out quickly.Other properties will be added at a later time.