aboutsummaryrefslogtreecommitdiffstats
path: root/mcp/salt-formulas/maas/machines/override_failed_testing.sls
blob: e7fe1d267914cf956abfb3c003840d62a5a81aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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