1 Star 0 Fork 0

andy/fluent-operator-walkthrough

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
deploy-fluent-operator.sh 795 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jeff Evans 提交于 1年前 . Update to 2.8.0
#!/bin/bash
set -eu
# Simple script to deploy Fluent Operator to a Kubernetes cluster with context already set
LOGGING_NAMESPACE=${LOGGING_NAMESPACE:-fluent}
if [[ "${INSTALL_HELM:-no}" == "yes" ]]; then
# See https://helm.sh/docs/intro/install/
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
fi
helm upgrade --install fluent-operator --create-namespace -n "$LOGGING_NAMESPACE" --wait --timeout 10m https://github.com/fluent/fluent-operator/releases/download/v2.8.0/fluent-operator-2.8.0.tgz
echo -e "\n"
kubectl -n "$LOGGING_NAMESPACE" wait --for=condition=available deployment/fluent-operator --timeout=10m
echo "Please visit https://github.com/fluent/fluent-operator/tree/master/manifests/fluentd to apply the manifests that you want to explore."
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/anhongyang/fluent-operator-walkthrough.git
git@gitee.com:anhongyang/fluent-operator-walkthrough.git
anhongyang
fluent-operator-walkthrough
fluent-operator-walkthrough
master

搜索帮助