curator.j2 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. apiVersion: "v1"
  2. kind: "DeploymentConfig"
  3. metadata:
  4. name: "{{deploy_name}}"
  5. labels:
  6. provider: openshift
  7. component: "{{component}}"
  8. logging-infra: "{{logging_component}}"
  9. spec:
  10. replicas: {{curator_replicas|default(1)}}
  11. selector:
  12. provider: openshift
  13. component: "{{component}}"
  14. logging-infra: "{{logging_component}}"
  15. strategy:
  16. rollingParams:
  17. intervalSeconds: 1
  18. timeoutSeconds: 600
  19. updatePeriodSeconds: 1
  20. type: Recreate
  21. template:
  22. metadata:
  23. name: "{{deploy_name}}"
  24. labels:
  25. logging-infra: "{{logging_component}}"
  26. provider: openshift
  27. component: "{{component}}"
  28. spec:
  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.items() %}
  34. {{key}}: "{{value}}"
  35. {% endfor %}
  36. {% endif %}
  37. containers:
  38. -
  39. name: "curator"
  40. image: {{image}}
  41. imagePullPolicy: IfNotPresent
  42. {% if (curator_memory_limit is defined and curator_memory_limit is not none and curator_memory_limit != "") or (curator_cpu_limit is defined and curator_cpu_limit is not none and curator_cpu_limit != "") or (curator_cpu_request is defined and curator_cpu_request is not none and curator_cpu_request != "") %}
  43. resources:
  44. {% if (curator_memory_limit is defined and curator_memory_limit is not none and curator_memory_limit != "") or (curator_cpu_limit is defined and curator_cpu_limit is not none and curator_cpu_limit != "") %}
  45. limits:
  46. {% if curator_cpu_limit is defined and curator_cpu_limit is not none and curator_cpu_limit != "" %}
  47. cpu: "{{curator_cpu_limit}}"
  48. {% endif %}
  49. {% if curator_memory_limit is defined and curator_memory_limit is not none and curator_memory_limit != "" %}
  50. memory: "{{curator_memory_limit}}"
  51. {% endif %}
  52. {% endif %}
  53. {% if (curator_memory_limit is defined and curator_memory_limit is not none and curator_memory_limit != "") or (curator_cpu_request is defined and curator_cpu_request is not none and curator_cpu_request != "") %}
  54. requests:
  55. {% if curator_cpu_request is defined and curator_cpu_request is not none and curator_cpu_request != "" %}
  56. cpu: "{{curator_cpu_request}}"
  57. {% endif %}
  58. {% if curator_memory_limit is defined and curator_memory_limit is not none 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_RUN_HOUR"
  87. value: "{{openshift_logging_curator_run_hour}}"
  88. -
  89. name: "CURATOR_RUN_MINUTE"
  90. value: "{{openshift_logging_curator_run_minute}}"
  91. -
  92. name: "CURATOR_RUN_TIMEZONE"
  93. value: "{{openshift_logging_curator_run_timezone}}"
  94. -
  95. name: "CURATOR_SCRIPT_LOG_LEVEL"
  96. value: "{{openshift_logging_curator_script_log_level}}"
  97. -
  98. name: "CURATOR_LOG_LEVEL"
  99. value: "{{openshift_logging_curator_log_level}}"
  100. volumeMounts:
  101. - name: certs
  102. mountPath: /etc/curator/keys
  103. readOnly: true
  104. - name: config
  105. mountPath: /etc/curator/settings
  106. readOnly: true
  107. volumes:
  108. - name: certs
  109. secret:
  110. secretName: logging-curator
  111. - name: config
  112. configMap:
  113. name: logging-curator