summaryrefslogtreecommitdiffstats
path: root/roles/openshift_logging/tasks/start_cluster.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/openshift_logging/tasks/start_cluster.yaml')
-rw-r--r--roles/openshift_logging/tasks/start_cluster.yaml21
1 files changed, 9 insertions, 12 deletions
diff --git a/roles/openshift_logging/tasks/start_cluster.yaml b/roles/openshift_logging/tasks/start_cluster.yaml
index 090ca8359..4ce6d1aa7 100644
--- a/roles/openshift_logging/tasks/start_cluster.yaml
+++ b/roles/openshift_logging/tasks/start_cluster.yaml
@@ -1,26 +1,17 @@
---
- command: >
- echo "{{openshift_logging_fluentd_nodeselector.keys()[0]}}"
- register: openshift_logging_fluentd_nodeselector_key
- check_mode: no
-
-- command: >
- echo "{{openshift_logging_fluentd_nodeselector.values()[0]}}"
- register: openshift_logging_fluentd_nodeselector_value
- check_mode: no
-
-- command: >
{{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get node -o jsonpath='{.items[*].metadata.name}'
register: fluentd_hosts
when: "'--all' in openshift_logging_fluentd_hosts"
check_mode: no
+ changed_when: no
- name: start fluentd
include: label_node.yaml
vars:
host: "{{fluentd_host}}"
- label: "{{openshift_logging_fluentd_nodeselector_key.stdout}}"
- value: "{{openshift_logging_fluentd_nodeselector_value.stdout}}"
+ label: "{{openshift_logging_fluentd_nodeselector.keys()[0]}}"
+ value: "{{openshift_logging_fluentd_nodeselector.values()[0]}}"
with_items: "{{(fluentd_hosts.stdout_lines is defined) | ternary(fluentd_hosts.stdout_lines, openshift_logging_fluentd_hosts)}}"
loop_control:
loop_var: fluentd_host
@@ -29,6 +20,7 @@
{{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get dc -l component=es -o name -n {{openshift_logging_namespace}}
register: es_dc
check_mode: no
+ changed_when: no
- name: start elasticsearch
include: scale.yaml
@@ -42,6 +34,7 @@
{{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get dc -l component=kibana -o name -n {{openshift_logging_namespace}}
register: kibana_dc
check_mode: no
+ changed_when: no
- name: start kibana
include: scale.yaml
@@ -55,6 +48,7 @@
{{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get dc -l component=curator -o name -n {{openshift_logging_namespace}}
register: curator_dc
check_mode: no
+ changed_when: no
- name: start curator
include: scale.yaml
@@ -68,6 +62,7 @@
{{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get dc -l component=es-ops -o name -n {{openshift_logging_namespace}}
register: es_dc
check_mode: no
+ changed_when: no
- name: start elasticsearch-ops
include: scale.yaml
@@ -82,6 +77,7 @@
{{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get dc -l component=kibana-ops -o name -n {{openshift_logging_namespace}}
register: kibana_dc
check_mode: no
+ changed_when: no
- name: start kibana-ops
include: scale.yaml
@@ -96,6 +92,7 @@
{{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get dc -l component=curator-ops -o name -n {{openshift_logging_namespace}}
register: curator_dc
check_mode: no
+ changed_when: no
- name: start curator-ops
include: scale.yaml