summaryrefslogtreecommitdiffstats
path: root/roles/openshift_logging/tasks/stop_cluster.yaml
blob: 8e0df83440bedcf1ba6babeb9f9d819a18c54cc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
---
- command: >
    {{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get node -o name
  register: fluentd_hosts
  when: "'--all' in openshift_logging_fluentd_hosts"
  changed_when: no

- set_fact: openshift_logging_fluentd_hosts={{ fluentd_hosts.stdout_lines | regex_replace('node/', '') }}
  when: "'--all' in openshift_logging_fluentd_hosts"

- name: stop fluentd
  include: label_node.yaml
  vars:
    host: "{{fluentd_host}}"
    label: "{{openshift_logging_fluentd_nodeselector.keys()[0]}}"
    unlabel: True
  with_items: "{{ openshift_logging_fluentd_hosts }}"
  loop_control:
    loop_var: fluentd_host

- command: >
    {{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get dc -l component=es -o name -n {{openshift_logging_namespace}}
  register: es_dc
  changed_when: no

- name: stop elasticsearch
  oc_scale:
    kind: dc
    name: "{{object.split('/')[1]}}"
    namespace: "{{openshift_logging_namespace}}"
    kubeconfig: "{{mktemp.stdout}}/admin.kubeconfig"
    replicas: 0
  with_items: "{{es_dc.stdout_lines}}"
  loop_control:
    loop_var: object

- command: >
    {{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get dc -l component=kibana -o name -n {{openshift_logging_namespace}}
  register: kibana_dc
  changed_when: no

- name: stop kibana
  oc_scale:
    kind: dc
    name: "{{object.split('/')[1]}}"
    namespace: "{{openshift_logging_namespace}}"
    kubeconfig: "{{mktemp.stdout}}/admin.kubeconfig"
    replicas: 0
  with_items: "{{kibana_dc.stdout_lines}}"
  loop_control:
    loop_var: object

- command: >
    {{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get dc -l component=curator -o name -n {{openshift_logging_namespace}}
  register: curator_dc
  changed_when: no

- name: stop curator
  oc_scale:
    kind: dc
    name: "{{object.split('/')[1]}}"
    namespace: "{{openshift_logging_namespace}}"
    kubeconfig: "{{mktemp.stdout}}/admin.kubeconfig"
    replicas: 0
  with_items: "{{curator_dc.stdout_lines}}"
  loop_control:
    loop_var: object

- command: >
    {{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get dc -l component=es-ops -o name -n {{openshift_logging_namespace}}
  register: es_dc
  changed_when: no

- name: stop elasticsearch-ops
  oc_scale:
    kind: dc
    name: "{{object.split('/')[1]}}"
    namespace: "{{openshift_logging_namespace}}"
    kubeconfig: "{{mktemp.stdout}}/admin.kubeconfig"
    replicas: 0
  with_items: "{{es_dc.stdout_lines}}"
  loop_control:
    loop_var: object
  when: openshift_logging_use_ops

- command: >
    {{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get dc -l component=kibana-ops -o name -n {{openshift_logging_namespace}}
  register: kibana_dc
  changed_when: no

- name: stop kibana-ops
  oc_scale:
    kind: dc
    name: "{{object.split('/')[1]}}"
    namespace: "{{openshift_logging_namespace}}"
    kubeconfig: "{{mktemp.stdout}}/admin.kubeconfig"
    replicas: 0
  with_items: "{{kibana_dc.stdout_lines}}"
  loop_control:
    loop_var: object
  when: openshift_logging_use_ops

- command: >
    {{openshift.common.client_binary}} --config={{mktemp.stdout}}/admin.kubeconfig get dc -l component=curator-ops -o name -n {{openshift_logging_namespace}}
  register: curator_dc
  changed_when: no

- name: stop curator-ops
  oc_scale:
    kind: dc
    name: "{{object.split('/')[1]}}"
    namespace: "{{openshift_logging_namespace}}"
    kubeconfig: "{{mktemp.stdout}}/admin.kubeconfig"
    replicas: 0
  with_items: "{{curator_dc.stdout_lines}}"
  loop_control:
    loop_var: object
  when: openshift_logging_use_ops