This message was deleted.
# general
a
This message was deleted.
b
You only need the k3s binary from that output, so stop k3s from running and disable,
systemctl stop k3s
then
systemctl disable k3s
a
Thank you @bored-farmer-36655 i did disabled k3s and now it's stuck on this waiting for k3s to start :
Copy code
" level=error msg="error syncing 'kube-system/traefik': handler on-helm-chart-remove: waiting for delete of helm chart for kube-system/traefik by helm-delete-traefik, requeuing"
error syncing 'kube-system/traefik': handler on-helm-chart-remove: waiting for delete of helm chart for kube-system/traefik by helm-delete-traefik, requeuing
b
@adamant-action-27001 perhaps don't disable the service, else cp the k3s binary to say /usr/local/bin and uninstall k3s. The other option is disabling traefik (you can edit the k3s.service file for this).
a
So the current error is about traefik is installed when i installed k3s and now when runcher is running from the the source is trying to delete that instalation and not being able to do so ?
b
Then disable in the k3s.service file
ExecStart=/usr/local/bin/k3s \
server \
'--disable' \
'traefik' \
....
a
and then will need to run
systemctl daemon-reload
right ?
b
Yup, then restart the k3s service
a
Ok done now i stop and disable the k3s again ?
b
Oh was it already stopped and disabled?
a
Yes and when we restarted with the new config it's started now
b
so that got it?
a
msg="error syncing 'kube-system/traefik': handler on-helm-chart-remove: waiting for delete of helm chart for kube-system/traefik by helm-delete-traefik, requeuing"
Nope still the same error
b
So it does want the k3s service running?
or just the k3s binary...
a
I think just the k3s binary but it's doing installation bootstraping and stoped on deleting traefik-helm chart
b
I would uninstall k3s but copy the k3s binary somewhere to put back first and see if that helps.
I've never tried what your doing, I've always just used helm to install 😉