aboutsummaryrefslogtreecommitdiffstats
path: root/mcp/salt-formulas/maas/machines/override_failed_testing.sls
diff options
context:
space:
mode:
authorAlexandru Avadanii <Alexandru.Avadanii@enea.com>2018-02-20 16:53:52 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-02-20 16:53:52 +0000
commitfe9be64738ff1a1091e7df5b04b391fb15d6abc0 (patch)
tree978d7e0de6034eabb11c90ae05e7fe267f241058 /mcp/salt-formulas/maas/machines/override_failed_testing.sls
parentc5d0050fd09db559d9c8f89e8c148ecd7ccedc4f (diff)
parent9f082ecb39beaa09132a8be611bb640c579d95d0 (diff)
Merge "[MaaS] Override failed testing by default" into stable/euphratesstable/euphrates
Diffstat (limited to 'mcp/salt-formulas/maas/machines/override_failed_testing.sls')
-rw-r--r--mcp/salt-formulas/maas/machines/override_failed_testing.sls20
1 files changed, 20 insertions, 0 deletions
diff --git a/mcp/salt-formulas/maas/machines/override_failed_testing.sls b/mcp/salt-formulas/maas/machines/override_failed_testing.sls
new file mode 100644
index 000000000..e7fe1d267
--- /dev/null
+++ b/mcp/salt-formulas/maas/machines/override_failed_testing.sls
@@ -0,0 +1,20 @@
+##############################################################################
+# Copyright (c) 2018 Mirantis Inc., Enea AB and others.
+# 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
+##############################################################################
+{%- from "maas/map.jinja" import region with context %}
+
+maas_login_admin:
+ cmd.run:
+ - name: "maas-region apikey --username {{ region.admin.username }} > /var/lib/maas/.maas_credentials"
+ - unless: 'test -e /var/lib/maas/.maas_credentials'
+
+# TODO: implement override_failed_testing via _modules/maas.py
+mark_broken_fixed_machine:
+ cmd.run:
+ - name: "maas login {{ region.admin.username }} http://{{ region.bind.host }}:5240/MAAS/api/2.0 - < /var/lib/maas/.maas_credentials && maas opnfv machine override-failed-testing {{ pillar['system_id'] }}"
+ - require:
+ - cmd: maas_login_admin