Kamil Gregorczyk
Kamil Gregorczyk
I restarted everything and booted only master to get the same result
I waited 30 minutes but nothing happen, I managed to drain nodes manually with this script: ``` #!/bin/bash KUBECTL="/usr/local/bin/kubectl" NOT_READY_NODES=$($KUBECTL get nodes | grep 'NotReady' | awk '{print $1}') while...
I found that when you delete a NotReady node it will actually reassign pods but worker gets added to the cluster only after k3s-agent service is rebooted
I learned that there's a difference between having a node in NotReady state and deleting the node. When your node goes into NotReady state then Kubernetes will not reschedule running...
@erikwilson in my case none of the pods was in Terminating/Unknown state (it was the same when only one node was NotReady) and that issue was fixed? 🤔 Will set...
I noticed the same thing, I had to drain nodes and delete pods with force To get rid of such pods
by adding to wowup you mean downloading the release and putting it into interface folder?
+ Django 2.0 has a built in select2 (which is used in autocomplete fields for foreign keys)
It probably works for fonts in your case because you load them in block in html, django admin seems to prepare fonts.css on its own. I think that's why it...
My workaround of course has to be done on the "developer side". But it could be useful to maybe have a const variable defined in settings file like ``` CLOUDFLARE_PUSH_ALWAYS_PUSHED_FILES...