Browse Source

Allow the 9k-10k port range for Prometheus

This ensures that Prometheus is able to monitor services such as
node_exporter, alertmanager and prometheus itself.
Simon Pasquier 6 years ago
parent
commit
9f815f12c9
1 changed files with 2 additions and 0 deletions
  1. 2 0
      roles/openshift_node/defaults/main.yml

+ 2 - 0
roles/openshift_node/defaults/main.yml

@@ -142,6 +142,8 @@ default_r_openshift_node_os_firewall_allow:
 - service: Kubernetes service NodePort UDP
   port: "{{ openshift_node_port_range | default('') }}/udp"
   cond: "{{ openshift_node_port_range is defined }}"
+- service: Prometheus monitoring
+  port: 9000-10000/tcp
 # Allow multiple port ranges to be added to the role
 r_openshift_node_os_firewall_allow: "{{ default_r_openshift_node_os_firewall_allow | union(openshift_node_open_ports | default([])) }}"