blob: fdd048535212812ebe985456299f88b4ff205c0d [file] [log] [blame]
Stephane Barbariebcea2f42018-03-02 18:46:32 -05001# ONOS
2- name: "VOLT-HA Teardown | Stop ONOS"
3 command: kubectl delete --ignore-not-found=true -f {{ target_voltha_dir }}/k8s/onos.yml
4 run_once: true
5
6# FreeRADIUS
7- name: "VOLT-HA Teardown | Stop FreeRADIUS"
8 command: kubectl delete --ignore-not-found=true -f {{ target_voltha_dir }}/k8s/freeradius.yml
9 run_once: true
10
11# FreeRADIUS Config
12- name: "VOLT-HA Teardown | Remove FreeRADIUS Configuration"
13 command: kubectl delete --ignore-not-found=true -f {{ target_voltha_dir }}/k8s/freeradius-config.yml
14 run_once: true
15
16# Dashd and Shovel
17- name: "VOLT-HA Teardown | Stop DASHD and SHOVEL"
18 command: kubectl delete --ignore-not-found=true -f {{ target_voltha_dir }}/k8s/stats.yml
19 run_once: true
20
21# Grafana
22- name: "VOLT-HA Teardown | Stop Grafana"
23 command: kubectl delete --ignore-not-found=true -f {{ target_voltha_dir }}/k8s/grafana.yml
24 run_once: true
25
26# NETCONF
27- name: "VOLT-HA Teardown | Stop NETCONF"
28 command: kubectl delete --ignore-not-found=true -f {{ target_voltha_dir }}/k8s/netconf.yml
29 run_once: true
30
31# Voltha CLI
32- name: "VOLT-HA Teardown | Stop VOLT-HA CLI"
33 command: kubectl delete --ignore-not-found=true -f {{ target_voltha_dir }}/k8s/vcli.yml
34 run_once: true
35
36# Envoy (for consul)
37- name: "VOLT-HA Teardown | Stop Envoy (for consul)"
38 command: kubectl delete --ignore-not-found=true -f {{ target_voltha_dir }}/k8s/envoy_for_consul.yml
39 run_once: true
40
41# OFagent
42- name: "VOLT-HA Teardown | Stop OpenFlow Agent"
43 command: kubectl delete --ignore-not-found=true -f {{ target_voltha_dir }}/k8s/ofagent.yml
44 run_once: true
45
46# Voltha Core (for consul)
47- name: "VOLT-HA Teardown | Stop VOLT-HA core (for consul)"
48 command: kubectl delete --ignore-not-found=true -f {{ target_voltha_dir }}/k8s/vcore_for_consul.yml
49 run_once: true
50
51# Consul
52- name: "VOLT-HA Teardown | Stop consul"
53 command: kubectl delete --ignore-not-found=true -f {{ target_voltha_dir }}/k8s/consul.yml
54 run_once: true
55
56# Fluentd
57- name: "VOLT-HA Teardown | Stop fluentd"
58 command: kubectl delete --ignore-not-found=true -f {{ target_voltha_dir }}/k8s/fluentd.yml
59 run_once: true
60
61# Kafka
62- name: "VOLT-HA Teardown | Stop kafka"
63 command: kubectl delete --ignore-not-found=true -f {{ target_voltha_dir }}/k8s/kafka.yml
64 run_once: true
65
66# Zookeeper
67- name: "VOLT-HA Teardown | Stop zookeeper"
68 command: kubectl delete --ignore-not-found=true -f {{ target_voltha_dir }}/k8s/zookeeper.yml
69 run_once: true
70
71# Ingress
72- name: "VOLT-HA Teardown | Stop Ingress Controller"
73 command: kubectl delete --ignore-not-found=true -f {{ target_voltha_dir }}/k8s/ingress
74 run_once: true
75
76# Namespace
77- name: "VOLT-HA Teardown | Remove Namespace"
78 command: kubectl delete --ignore-not-found=true -f {{ target_voltha_dir }}/k8s/namespace.yml
79 run_once: true
80
81
82