hongbo.mo

Results 14 comments of hongbo.mo

@philotas thx, it works. More details are below: 1. Install pyenv and python2.7 ``` brew install pyenv pyenv install 2.7.18 ``` 2. Change the script to ``` $HOME/.pyenv/versions/2.7.18/bin/python2.7 process.py "{query}"...

@ethfoo Thanks. If I understand correctly, the document link you given seems to LogConfig. However, I use ClusterLogConfig to collect all pod's logs. My CRD spec: ``` apiVersion: loggie.io/v1beta1 kind:...

Service example: ```yaml apiVersion: v1 kind: Service metadata: labels: app: nginx name: my-nginx namespace: nginx-example ownerReferences: - apiVersion: apps/v1 blockOwnerDeletion: true controller: true kind: deployment name: nginx-deployment uid: 13b53874-028e-4cc0-8a5f-ac413cb4bba9 spec:...

> I'm not sure if it's OK to replicate the uid field. @reasonerjt AFAIK, uid in the K8s cluster is unique, so, replicating the uid field will meet problems if...

现在还不支持,之后版本可以考虑支持。

> 第2个问题,可以通过设置解决么?还是也需要upx兼容环境? 我的想法是增加 exclude-dir 参数 > 另外权限问题,个人建议通过本地配置文件读取,这样不用总login或者命令再带auth参数这么麻烦 只要登陆一次,之后执行命令就是读取本地配置文件的。

很好的建议,会在下一版中加进来。

https://github.com/upyun/go-sdk/pull/38

controller-runtime has changed object type. https://github.com/kubernetes-sigs/controller-runtime/blob/master/pkg/client/client.go#L206 Fix it. ```golang func DeleteResource(cl client.Client, obj runtime.Object) error { ``` => ```golang func DeleteResource(cl client.Client, obj client.Object) error { ```