Adieu
Adieu
I've looked into this issue. `module/files/module.cue` is actually generated from `schema/files/*.yaml`. The reason that `owner` and `group` fields are missing is that I ignored `extends_documentation_fragment` in the script. It's better...
Will https://github.com/kubernetes/test-infra be helpful?
Can we build something like chaos monkey to simulate failures while watching for overall service health? We could leave it running for a while and gather some stats. I think...
How about we setup a cluster with archon running in it. Each test case could define their own cluster with yaml files. In Jenkinsfile, they setup a new cluster with...
Because we don't have to setup credentials locally?
@danielxiaozhu Can you remove the `docker.io/` part from the image name and rerun the test for me? Actually I think there should be no problem to pull the image because...
One possible way is to use the `record_modifier` filter. You can find the documents at http://fluentbit.io/documentation/0.12/filter/record_modifier.html Currently fluent-bit 0.12 is still in development. We'll support it as soon as it...
we've made a bundled image at https://hub.docker.com/r/kubeup/fluent-bit-aliyun/ which you could use directly. We use circle.ci to compile the plugin and to build the target image with it. The `Dockerfile` is...
if you don't use docker, then you could run `fluent-bit` loading `fluent-bit-aliyun` as the output plugin. ``` fluent-bit -c /etc/fluent-bit/fluent-bit.conf -e /etc/fluent-bit/out_sls.so ``` `/etc/fluent-bit/out_sls.so` should be the path to the...
use this command to build the plugin: ``` GOOS=linux go build -buildmode=c-shared -o out_sls.so github.com/kubeup/fluent-bit-aliyun ```