curator-cj.j2 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. apiVersion: "batch/v1beta1"
  2. kind: "CronJob"
  3. metadata:
  4. name: "{{deploy_name}}"
  5. labels:
  6. provider: openshift
  7. component: "{{component}}"
  8. logging-infra: "{{logging_component}}"
  9. spec:
  10. successfulJobsHistoryLimit: 1
  11. failedJobsHistoryLimit: 1
  12. schedule: "{{ cron_job_schedule }}"
  13. jobTemplate:
  14. spec:
  15. backoffLimit: 0
  16. concurrencyPolicy: Forbid
  17. replicas: 1
  18. strategy:
  19. type: Recreate
  20. template:
  21. metadata:
  22. name: "{{deploy_name}}"
  23. labels:
  24. logging-infra: "{{logging_component}}"
  25. provider: openshift
  26. component: "{{component}}"
  27. spec:
  28. restartPolicy: Never
  29. terminationGracePeriod: 600
  30. serviceAccountName: aggregated-logging-curator
  31. {% if curator_node_selector is iterable and curator_node_selector | length > 0 %}
  32. nodeSelector:
  33. {% for key, value in curator_node_selector.iteritems() %}
  34. {{key}}: "{{value}}"
  35. {% endfor %}
  36. {% endif %}
  37. containers:
  38. -
  39. name: "curator"
  40. image: "{{ openshift_logging_curator_image }}"
  41. imagePullPolicy: IfNotPresent
  42. {% if (curator_memory_limit is defined and curator_memory_limit) or (curator_cpu_limit is defined and curator_cpu_limit) or (curator_cpu_request is defined and curator_cpu_request) %}
  43. resources:
  44. {% if (curator_memory_limit is defined and curator_memory_limit) or (curator_cpu_limit is defined and curator_cpu_limit) %}
  45. limits:
  46. {% if curator_cpu_limit is defined and curator_cpu_limit %}
  47. cpu: "{{curator_cpu_limit}}"
  48. {% endif %}
  49. {% if curator_memory_limit is defined and curator_memory_limit %}
  50. memory: "{{curator_memory_limit}}"
  51. {% endif %}
  52. {% endif %}
  53. {% if (curator_memory_limit is defined and curator_memory_limit) or (curator_cpu_request is defined and curator_cpu_request) %}
  54. requests:
  55. {% if curator_cpu_request is defined and curator_cpu_request %}
  56. cpu: "{{curator_cpu_request}}"
  57. {% endif %}
  58. {% if curator_memory_limit is defined and curator_memory_limit %}
  59. memory: "{{curator_memory_limit}}"
  60. {% endif %}
  61. {% endif %}
  62. {% endif %}
  63. env:
  64. -
  65. name: "K8S_HOST_URL"
  66. value: "{{openshift_logging_curator_master_url}}"
  67. -
  68. name: "ES_HOST"
  69. value: "{{es_host}}"
  70. -
  71. name: "ES_PORT"
  72. value: "{{es_port}}"
  73. -
  74. name: "ES_CLIENT_CERT"
  75. value: "/etc/curator/keys/cert"
  76. -
  77. name: "ES_CLIENT_KEY"
  78. value: "/etc/curator/keys/key"
  79. -
  80. name: "ES_CA"
  81. value: "/etc/curator/keys/ca"
  82. -
  83. name: "CURATOR_DEFAULT_DAYS"
  84. value: "{{openshift_logging_curator_default_days}}"
  85. -
  86. name: "CURATOR_SCRIPT_LOG_LEVEL"
  87. value: "{{openshift_logging_curator_script_log_level}}"
  88. -
  89. name: "CURATOR_LOG_LEVEL"
  90. value: "{{openshift_logging_curator_log_level}}"
  91. -
  92. name: "CURATOR_TIMEOUT"
  93. value: "{{openshift_logging_curator_timeout}}"
  94. volumeMounts:
  95. - name: certs
  96. mountPath: /etc/curator/keys
  97. readOnly: true
  98. - name: config
  99. mountPath: /etc/curator/settings
  100. readOnly: true
  101. volumes:
  102. - name: certs
  103. secret:
  104. secretName: logging-curator
  105. - name: config
  106. configMap:
  107. name: logging-curator