搜索

36.5.5.2. 创建 Curator 配置

download PDF

openshift_logging Ansible 角色提供了一个 ConfigMap,Curator 从中读取其配置。您可以编辑或替换此 ConfigMap 来重新配置 Curator。目前,使用 logging-curator ConfigMap 来配置 ops 和 non-ops Curator 实例。任何 .operations 配置都与您的应用程序日志配置位于同一个位置。

  1. 要创建 Curator 配置,请编辑部署的 ConfigMap 中的配置:

    $ oc edit configmap/logging-curator

    或者,从 cronjob 手动创建作业:

    oc create job --from=cronjob/logging-curator <job_name>
    • 对于脚本化部署,复制安装程序创建的配置文件并创建新的 OpenShift Container Platform 自定义配置:

      $ oc extract configmap/logging-curator --keys=curator5.yaml,config.yaml --to=/my/config
        edit /my/config/curator5.yaml
        edit /my/config/config.yaml
      $ oc delete configmap logging-curator ; sleep 1
      $ oc create configmap logging-curator \
          --from-file=curator5.yaml=/my/config/curator5.yaml \
          --from-file=config.yaml=/my/config/config.yaml \
          ; sleep 1
    • 或者,如果您使用 操作文件

      $ oc extract configmap/logging-curator --keys=curator5.yaml,actions.yaml --to=/my/config
        edit /my/config/curator5.yaml
        edit /my/config/actions.yaml
      $ oc delete configmap logging-curator ; sleep 1
      $ oc create configmap logging-curator \
          --from-file=curator5.yaml=/my/config/curator5.yaml \
          --from-file=actions.yaml=/my/config/actions.yaml \
          ; sleep 1

下一个调度的作业使用此配置。

您可以使用以下命令来控制 cronjob:

# suspend cronjob
oc patch cronjob logging-curator -p '{"spec":{"suspend":true}}'

# resume cronjob
oc patch cronjob logging-curator -p '{"spec":{"suspend":false}}

# change cronjob schedule
oc patch cronjob logging-curator -p '{"spec":{"schedule":"0 0 * * *"}}' 1
1
schedule 选项接受 cron 格式的调度。
Red Hat logoGithubRedditYoutubeTwitter

学习

尝试、购买和销售

社区

关于红帽文档

通过我们的产品和服务,以及可以信赖的内容,帮助红帽用户创新并实现他们的目标。

让开源更具包容性

红帽致力于替换我们的代码、文档和 Web 属性中存在问题的语言。欲了解更多详情,请参阅红帽博客.

關於紅帽

我们提供强化的解决方案,使企业能够更轻松地跨平台和环境(从核心数据中心到网络边缘)工作。

© 2024 Red Hat, Inc.