hawkular_openshift_agent_ds.j2 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. apiVersion: extensions/v1beta1
  2. kind: DaemonSet
  3. metadata:
  4. name: hawkular-openshift-agent
  5. labels:
  6. name: hawkular-openshift-agent
  7. metrics-infra: agent
  8. namespace: {{openshift_metrics_hawkular_agent_namespace}}
  9. spec:
  10. selector:
  11. matchLabels:
  12. name: hawkular-openshift-agent
  13. template:
  14. metadata:
  15. labels:
  16. name: hawkular-openshift-agent
  17. metrics-infra: agent
  18. spec:
  19. serviceAccount: hawkular-openshift-agent
  20. {% if node_selector is iterable and node_selector | length > 0 %}
  21. nodeSelector:
  22. {% for key, value in node_selector.items() %}
  23. {{key}}: "{{value}}"
  24. {% endfor %}
  25. {% endif %}
  26. containers:
  27. - image: {{openshift_metrics_image_prefix}}metrics-hawkular-openshift-agent:{{openshift_metrics_image_version}}
  28. imagePullPolicy: IfNotPresent
  29. name: hawkular-openshift-agent
  30. {% if ((openshift_metrics_hawkular_agent_limits_cpu is defined and openshift_metrics_hawkular_agent_limits_cpu is not none)
  31. or (openshift_metrics_hawkular_agent_limits_memory is defined and openshift_metrics_hawkular_agent_limits_memory is not none)
  32. or (openshift_metrics_hawkular_agent_requests_cpu is defined and openshift_metrics_hawkular_agent_requests_cpu is not none)
  33. or (openshift_metrics_hawkular_agent_requests_memory is defined and openshift_metrics_hawkular_agent_requests_memory is not none))
  34. %}
  35. resources:
  36. {% if (openshift_metrics_hawkular_agent_limits_cpu is not none
  37. or openshift_metrics_hawkular_agent_limits_memory is not none)
  38. %}
  39. limits:
  40. {% if openshift_metrics_hawkular_agent_limits_cpu is not none %}
  41. cpu: "{{openshift_metrics_hawkular_agent_limits_cpu}}"
  42. {% endif %}
  43. {% if openshift_metrics_hawkular_agent_limits_memory is not none %}
  44. memory: "{{openshift_metrics_hawkular_agent_limits_memory}}"
  45. {% endif %}
  46. {% endif %}
  47. {% if (openshift_metrics_hawkular_agent_requests_cpu is not none
  48. or openshift_metrics_hawkular_agent_requests_memory is not none)
  49. %}
  50. requests:
  51. {% if openshift_metrics_hawkular_agent_requests_cpu is not none %}
  52. cpu: "{{openshift_metrics_hawkular_agent_requests_cpu}}"
  53. {% endif %}
  54. {% if openshift_metrics_hawkular_agent_requests_memory is not none %}
  55. memory: "{{openshift_metrics_hawkular_agent_requests_memory}}"
  56. {% endif %}
  57. {% endif %}
  58. {% endif %}
  59. livenessProbe:
  60. httpGet:
  61. scheme: HTTP
  62. path: /health
  63. port: 8080
  64. initialDelaySeconds: 30
  65. periodSeconds: 30
  66. command:
  67. - "hawkular-openshift-agent"
  68. - "-config"
  69. - "/hawkular-openshift-agent-configuration/config.yaml"
  70. - "-v"
  71. - "3"
  72. env:
  73. - name: K8S_POD_NAMESPACE
  74. valueFrom:
  75. fieldRef:
  76. fieldPath: metadata.namespace
  77. - name: K8S_POD_NAME
  78. valueFrom:
  79. fieldRef:
  80. fieldPath: metadata.name
  81. volumeMounts:
  82. - name: hawkular-openshift-agent-configuration
  83. mountPath: "/hawkular-openshift-agent-configuration"
  84. volumes:
  85. - name: hawkular-openshift-agent-configuration
  86. configMap:
  87. name: hawkular-openshift-agent-configuration
  88. - name: hawkular-openshift-agent
  89. configMap:
  90. name: hawkular-openshift-agent-configuration