-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
build: upgrade kit
#14105
build: upgrade kit
#14105
Conversation
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.
Thanks @alexec! I entered kitproj/kit#81 because kit ui-deps
is currently broken, and it looks like you solved that here.
kubectl -n argo port-forward "svc/$resource" "$port:$dest_port" & | ||
until lsof -i ":$port" > /dev/null ; do sleep 1 ; done | ||
} | ||
go install github.com/kitproj/[email protected] |
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.
Nice! I made my own attempt at getting rid of kubectl port-forward
a little while ago: main...MasonM:argo-workflows:no-port-forward
The idea is to change all services to be of type LoadBalancer
. With k3s, that means ServiceLB will automatically forward the port to the host. This works, but it kinda couples the dev environment to k3s, since some distributions (e.g. kind) don't come with a LoadBalancer
out-of-the-box. It looks like kubeauto doesn't have that problem.
Signed-off-by: Alex Collins <[email protected]>
Signed-off-by: Alex Collins <[email protected]>
Co-authored-by: Mason Malone <[email protected]> Signed-off-by: Alex Collins <[email protected]> Signed-off-by: Alex Collins <[email protected]>
Signed-off-by: Alex Collins <[email protected]> Signed-off-by: Alex Collins <[email protected]>
Signed-off-by: Tim Collins <[email protected]> Signed-off-by: Alex Collins <[email protected]>
Signed-off-by: oninowang <[email protected]> Signed-off-by: Alex Collins <[email protected]>
#14102 (#14104) Signed-off-by: Tianchu Zhao <[email protected]> Signed-off-by: Alex Collins <[email protected]>
Signed-off-by: Kaan C. Fidan <[email protected]> Signed-off-by: Alex Collins <[email protected]>
…nAsNonRoot (#14072) Signed-off-by: Paul Watts <[email protected]> Co-authored-by: Mason Malone <[email protected]> Signed-off-by: Alex Collins <[email protected]>
Signed-off-by: MenD32 <[email protected]> Co-authored-by: MenD32 <[email protected]> Signed-off-by: Alex Collins <[email protected]>
Signed-off-by: Alex Collins <[email protected]>
Good to see you, Alex :-) |
N/A
Motivation
Improve the user experience by updating to the latest version.
Modifications
Updated tasks.yaml and other build files.
Verification