ccamacho@guateque:~/dev/topsail$ ./run_toolbox.py fetch_external_test run ccamacho.automationhub debug main
Using '/tmp/ci-artifacts_20231114' to store the test artifacts.
Using '/tmp/ci-artifacts_20231114/021__fetch_external_test__run' to store extra log files
Using '/tmp/ci-artifacts_20231114/021__fetch_external_test__run/_ansible.log' to store ansible logs.
Using '/tmp/ci-artifacts_20231114/ansible_facts' to store ansible facts.
Using '/home/ccamacho/dev/topsail/config/ansible.cfg' as ansible configuration file.
Using '/tmp/ci-artifacts_20231114/021__fetch_external_test__run/_ansible.log.json' as ansible json log file.
ansible-playbook [core 2.15.6]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This hosts file is brought to you by Dan Pollock and can be found at | |
# http://someonewhocares.org/hosts/ | |
# You are free to copy and distribute this file for non-commercial uses, | |
# as long the original URL and attribution is included. | |
#<localhost> | |
127.0.0.1 localhost | |
127.0.0.1 localhost.localdomain | |
255.255.255.255 broadcasthost | |
::1 localhost |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p class="title"><b>No Boostrap</b> | jQueryAnimated Accordions</p> | |
<div class="container"> | |
<div id="accordion-1"> | |
<div class="head"> | |
<h2>1. Simple Accordion</h2> | |
<i class="fas fa-angle-down arrow"></i> | |
</div> | |
<div class="content"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.IO.Compression; | |
using System.Text; | |
namespace TarExample | |
{ | |
public class Tar | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
virsh net-destroy kimgtnet0 | |
virsh net-start kimgtnet0 | |
virsh net-destroy kimgtnet1 | |
virsh net-start kimgtnet1 | |
VMS=$( virsh list | grep '-' | awk '{ print $2; }' ) | |
for guest in $VMS ; do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NO FEATURE | |
NODES=3ctlr_2comp_3ceph | |
# modify the ceph nodes memory to 5GB at config/nodes/3ctlr_2comp_3ceph.yml | |
control_memory: 8192 | |
control_disk: 45 | |
compute_memory: 5120 | |
compute_disk: 50 | |
ceph_memory: 5120 | |
ceph_disk: 55 | |
undercloud_memory: 12288 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
set -u | |
## Variables | |
set_vars(){ | |
APT_MIRROR_HOST="mirror" | |
LXDKVM_SSTREAM_HOST="mirror" | |
JUJU_SSTREAM_HOST="mirror" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If the src or dst project belongs to the src or dst with the admin member it will be able to see all resources from all tenants :( | |
Before | |
[ccamacho@ibm-p8-kvm-03-guest-02 openstack]$ openstack --os-cloud dst13 router list | |
+--------------------------------------+--------------------+--------+-------+----------------------------------+-------------+-------+ | |
| ID | Name | Status | State | Project | Distributed | HA | | |
+--------------------------------------+--------------------+--------+-------+----------------------------------+-------------+-------+ | |
| 278a3639-5c72-44a7-a51e-bb171e86d4d5 | osm_uch_dst_router | ACTIVE | UP | e6be611bd3064d8d827b037d32cfb68c | False | False | | |
| 55ae42c4-6778-49e3-8c73-bcbad6eb8c7c | osm_router | ACTIVE | UP | f0954830265b4570bc3a928df3a07b3a | False | False | | |
| c28cf00d-5b17-4b54-ab12-775bde5e64a1 | osm_uch_src_router | ACTIVE | UP | f0954830265b4570bc3a928df3a07b3a | False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Server(resource.Resource): | |
resource_type = const.RES_TYPE_SERVER | |
sdk_class = openstack.compute.v2.server.Server | |
info_from_sdk = [ | |
'addresses', | |
'id', | |
'status', |
NewerOlder