-
Notifications
You must be signed in to change notification settings - Fork 0
Move to alpine k8s image #946
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
Signed-off-by: Ryan VanGundy <85766511+rmvangun@users.noreply.github.com>
| - name: copy-k8s-secret | ||
| image: bitnami/kubectl:1.31.2 | ||
| # renovate: datasource=docker depName=kubectl package=alpine/k8s | ||
| image: alpine/k8s:1.33.4 |
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.
Bug: Missing yq Tool in Minimal Image
The image changed from bitnami/kubectl:1.31.2 to alpine/k8s:1.33.4, but the script requires the yq command-line tool on line 38 which is NOT included in the alpine/k8s image. The alpine/k8s image is a minimal image containing only kubectl; yq would need to be explicitly installed. This will cause the Job to fail at runtime when it tries to execute yq eval.
Signed-off-by: Ryan VanGundy <85766511+rmvangun@users.noreply.github.com> chore: Collect talos support bundle (#950) Signed-off-by: Ryan VanGundy <85766511+rmvangun@users.noreply.github.com> Move to alpine k8s image (#946) Signed-off-by: Ryan VanGundy <85766511+rmvangun@users.noreply.github.com> Co-authored-by: rmvangun <85766511+rmvangun@users.noreply.github.com>
Signed-off-by: Ryan VanGundy <85766511+rmvangun@users.noreply.github.com> chore: Collect talos support bundle (#950) Signed-off-by: Ryan VanGundy <85766511+rmvangun@users.noreply.github.com> Move to alpine k8s image (#946) Signed-off-by: Ryan VanGundy <85766511+rmvangun@users.noreply.github.com> Co-authored-by: rmvangun <85766511+rmvangun@users.noreply.github.com> Disable coredns Signed-off-by: Ryan VanGundy <85766511+rmvangun@users.noreply.github.com>
Signed-off-by: Ryan VanGundy <85766511+rmvangun@users.noreply.github.com> chore: Collect talos support bundle (#950) Signed-off-by: Ryan VanGundy <85766511+rmvangun@users.noreply.github.com> Move to alpine k8s image (#946) Signed-off-by: Ryan VanGundy <85766511+rmvangun@users.noreply.github.com> Co-authored-by: rmvangun <85766511+rmvangun@users.noreply.github.com> Disable coredns Signed-off-by: Ryan VanGundy <85766511+rmvangun@users.noreply.github.com>
Bitnami deprecated its kubectl image, we're moving to Alpine's k8s image.