├── .github └── workflows │ └── main.yaml ├── LICENSE ├── README.md ├── create-minikube-cluster-for-mac.sh ├── create-minikube-cluster.sh ├── deploy-es.sh ├── deploy-fluent-operator.sh ├── deploy-kafka.sh ├── deploy-loki.sh └── manifest ├── route-to-different-kafka-topic.yaml └── use-buffer-for-fluentd.yaml /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere-sigs/fluent-operator-walkthrough/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere-sigs/fluent-operator-walkthrough/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere-sigs/fluent-operator-walkthrough/HEAD/README.md -------------------------------------------------------------------------------- /create-minikube-cluster-for-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere-sigs/fluent-operator-walkthrough/HEAD/create-minikube-cluster-for-mac.sh -------------------------------------------------------------------------------- /create-minikube-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere-sigs/fluent-operator-walkthrough/HEAD/create-minikube-cluster.sh -------------------------------------------------------------------------------- /deploy-es.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere-sigs/fluent-operator-walkthrough/HEAD/deploy-es.sh -------------------------------------------------------------------------------- /deploy-fluent-operator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere-sigs/fluent-operator-walkthrough/HEAD/deploy-fluent-operator.sh -------------------------------------------------------------------------------- /deploy-kafka.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere-sigs/fluent-operator-walkthrough/HEAD/deploy-kafka.sh -------------------------------------------------------------------------------- /deploy-loki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere-sigs/fluent-operator-walkthrough/HEAD/deploy-loki.sh -------------------------------------------------------------------------------- /manifest/route-to-different-kafka-topic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere-sigs/fluent-operator-walkthrough/HEAD/manifest/route-to-different-kafka-topic.yaml -------------------------------------------------------------------------------- /manifest/use-buffer-for-fluentd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubesphere-sigs/fluent-operator-walkthrough/HEAD/manifest/use-buffer-for-fluentd.yaml --------------------------------------------------------------------------------