Maxim Levchenko

Results 26 comments of Maxim Levchenko

Can you provide debug messages? By running with `bash -x ./kube-dump`

I have accumulated a lot of tasks to support the script in macos, and most likely I will need to do a general refactoring, where it will be possible to...

@Ljohn001, can you explain why this is an anti-syntax problem? [ABS guide](https://tldp.org/LDP/abs/html/abs-guide.html#LOGOPS1) just inclined towards this option Yes, both work, but is it worth changing something? Can you explain your...

Another issue related to macOS https://github.com/WoozyMasta/kube-dump/issues/14 I don't think this is a critical issue yet, since there is a docker container. I'll try to do it when I have free...

@OMO-NOSA, can you provide more information? Please show me the output of the commands `kubectl describe pod kube-dump` and `kubectl get events | grep kube-dump` for the namespace where pod...

@OMO-NOSA, It looks like everything is working well, have you tried running a dump task? For example: `kubectl exec -ti -n kube-dump kube-dump -- /kube-dump ns -n kube-dump`

Perhaps it was not obvious from the [document](/WoozyMasta/kube-dump/blob/d3b133d97a2eebb75fafd18d2fff93987b6789ea/docs/pod.md), I [corrected it](/WoozyMasta/kube-dump/blob/master/docs/pod.md), I hope it will be clearer this way 8b2135f19e074271742ee2332fb1a56ba0dadb23

@OMO-NOSA, you have exactly set the ClusterRoleBinding from the [deploy/cluster-role-view.yaml](/WoozyMasta/kube-dump/blob/master/deploy/cluster-role-view.yaml) file? If so then try this: It looks like you don't have a standard view role in the cluster. Create...

Hi The exclusion functionality is not yet implemented, you can explicitly specify which resources you want to save, for example: ```bash ./kube-dump ns -n dev,prod -r deployment,sts,ds,svc,cm # or MODE=ns...