This file contains hidden or 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
cp podman_tcp.service /usr/lib/systemd/system/podman_tcp.service | |
sudo systemctl daemon-reload | |
systemctl enable podman_tcp.service | |
systemctl start podman_tcp.service |
This file contains hidden or 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
[Unit] | |
Description=Mock service for robottelo tracer tests | |
[Service] | |
ExecStart=/usr/bin/mock-service.sh | |
[Install] | |
WantedBy=multi-user.target |
This file contains hidden or 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
@pytest.fixture(scope='function') | |
def rh_repo(module_manifest_org, rhel_contenthost): | |
# rh_major = rhel_contenthost.os_version.major | |
rh_major = 8 | |
# the rhel version of the enabled reposet does not matter to us | |
rh_repo_id = enable_rhrepo_and_fetchid( | |
basearch='x86_64', | |
org_id=module_manifest_org.id, | |
product=PRDS[f'rhel{rh_major if rh_major > 7 else ""}'], | |
repo=REPOS['rhst7']['name'], |
This file contains hidden or 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
version: '3' | |
services: | |
mosquitto: | |
image: eclipse-mosquitto:1.6.12 | |
restart: always | |
ports: | |
- 1883:1883 | |
- 8883:8883 | |
- 9001:9001 |
This file contains hidden or 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
import os | |
import time | |
import xmltodict | |
files = os.listdir('.') | |
for fi in files: | |
if fi == 'new': | |
continue | |
with open(fi, 'r') as f: | |
foo = xmltodict.parse(f.read()) |
This file contains hidden or 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
search.clear not working (https://github.com/SatelliteQE/airgun/issues/249) | |
- test_architecture.test_positive_end_to_end | |
- test_bookmark.test_positive_end_to_end | |
- test_computeresource_ec2.test_positive_default_end_to_end_with_custom_profile | |
- test_computeresource_libvirt.test_positive_end_to_end | |
- test_computeresource.test_positive_end_to_end[False] | |
- test_computeresource.test_positive_end_to_end[True] | |
- test_config_group.test_positive_end_to_end | |
- test_domain.test_positive_end_to_end | |
- test_host.test_positive_search_by_parameter_with_operator |
This file contains hidden or 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
# Usage: | |
# docker-compose up --force-recreate | |
version: '2.1' | |
networks: | |
default: | |
driver: bridge | |
driver_opts: | |
com.docker.network.driver.mtu: 1300 |
This file contains hidden or 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
FROM jenkins/jenkins:lts-alpine | |
USER root | |
RUN apk add --no-cache python3 py3-virtualenv curl-dev libxml2-dev libxslt-dev grep sed && \ | |
python3 -m ensurepip && \ | |
pip3 install --upgrade pip setuptools && \ | |
if [ ! -e /usr/bin/pip ]; then ln -s pip3 /usr/bin/pip ; fi && \ | |
if [[ ! -e /usr/bin/python ]]; then ln -sf /usr/bin/python3 /usr/bin/python; fi && \ | |
rm -r /root/.cache | |
RUN apk add pkgconf | |
RUN apk add build-base |
This file contains hidden or 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/python | |
import json | |
import os | |
import re | |
import requests | |
from shutil import copyfile | |
from tempfile import mkdtemp | |
update_center_url = 'https://updates.jenkins.io/update-center.json' |
This file contains hidden or 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 -o pipefail | |
plugin_repo_url="http://updates.jenkins-ci.org/download/plugins" | |
plugin_dir="/var/lib/jenkins/plugins" | |
include_optionals=false | |
showUsage() { |
NewerOlder