aboutsummaryrefslogtreecommitdiffstats
path: root/kud/deployment_infra/playbooks/configure-emco-reset.yml
blob: 7cad36e4efc6ddda5230e5edf4984ed816171776 (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
---
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2018
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

- hosts: kube-master
  tasks:
    - name: Load kud variables
      include_vars:
        file: kud-vars.yml

    - name: Change the emco directory and run helm delete
      command: /usr/local/bin/helm uninstall --namespace emco emco
      register: helm_delete
      args:
        chdir: /opt/multicloud/deployments/helm/v2/emco

    - debug:
        var: helm_delete.stdout_lines

    - name: Change the emco directory and delete the emco namespace
      command: /usr/local/bin/kubectl delete ns emco
      register: delete_emco_ns
      args:
        chdir: /opt/multicloud/deployments/helm/v2/emco

    - debug:
        var: delete_emco_ns.stdout_lines

    - name: Change the emco directory and make clean
      command: /usr/bin/make clean
      register: make_clean
      args:
        chdir: /opt/multicloud/deployments/helm/v2/emco

    - debug:
        var: make_clean.stdout_lines

    - name: clean multicloud-k8s path
      file:
        state: absent
        path: /opt/multicloud