Takashi Kusumi
Takashi Kusumi
> It becomes a serious issue when one of the plugin pods cannot be deleted for some reason. The trident operator does not create a new DaemonSet until all plugin...
Hi, It appears that Stern has detected the events, but they could be filtered out by [targetFilter.shouldAdd()](https://github.com/superbrothers/stern/blob/816c8960d68e14642238230bb65fe588039e7e16/stern/target.go#L139-L141). The following patch may resolve the issue, but I've noticed the behavior of...
@felipecrs Oh, sorry. I missed the `--tail=0` option. Thank you for pointing it out. As you mentioned, Stern behaves as expected when using `--tail=0`. I believe it would be better...
I'm glad to hear it worked as expected. :tada: #### Config file I believe that the first one (`condition: ready=false`) is better because it maintains consistency with other options. Additionally,...
@felipecrs Let me clarify the conditions under which you want to view pod logs in your use case. I assume you do **NOT** want to view logs when: 1. When...
Thanks for your detailed explanation! I understand the use case, and it sounds worth implementing. @superbrothers What do you think? I prefer creating a dedicated flag for this use case...
If you don't mind using a complex template, the `--condition-template` approach looks better since it can be used in a wide range of use cases. For your reference, if you...
Hi, thanks for the PR! > --same-prefix-color -- use the same color for pods that have the same name prefix such as 'api-1' and 'api-2' This is an interesting feature,...
Thanks for reporting this issue! It seems that the `README.md` mistakenly mentions that `ppextjson` and `extjson` are available as template functions, when in fact they are only available as `--output`...
I believe formatting the JSON with indentation is easy since we can use `json.MarshalIndent`. However, if you'd like to add syntax highlighting as well, you would need an additional library....