github.com/benz9527/xboot@v0.0.0-20240504061247-c23f15593274/helpers/fluentbit/install.sh (about) 1 #!/bin/bash 2 3 # Download fluentbit operator helm chart and install it. 4 # https://github.com/fluent/fluent-operator/tree/master/charts/fluent-operator 5 6 # OCP env, default namespace is fluent. 7 # The requests.limits.memory is 512Mi, if it is not enough, the 8 # fluentbit will be OOM killed by OCP. 9 helm install fluent-operator ./fluent-operator.tgz -n xxx --set containerRuntime=crio --set operator.logPath.crio=/var/log --set operator.resources.requests.limits.memory=512Mi --set operator.resources.requests.limits.cpu=100m 10