-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DynaConf CI native changes required in Robottelo
* Dynaconf Native Airgun and Nailgun configuration * Initial Robottelo and Server DynaConf YAMLs - The robottelo copy of Gitlab SateQE Jenkins * Commented non-default settings instead of placeholder * New repos missed in robottelo from jenkins-configs * Tools and RHEL8_OS repo dependent tests updated for new dynaconf YAMLs * Removed Robottelo and Server sections from robottelo.properties.sample * Separate repos.yaml and swapped the places of robottelo and server settings in YAML * Logging updated for dynaconf. robottelo and server settings base config removed
- Loading branch information
1 parent
6ce2e00
commit a33f706
Showing
15 changed files
with
299 additions
and
341 deletions.
There are no files selected for viewing
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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
REPOS: | ||
# Provide link to rhel6/7/8 repo here, as puppet rpm would require packages from | ||
# RHEL 6/7/8 repo and syncing the entire repo on the fly would take longer for | ||
# tests to run Specify the *.repo link to an internal repo for tests to execute properly | ||
RHEL6_REPO: replace-with-rhel8-repo-http-link | ||
RHEL7_REPO: replace-with-rhel8-repo-http-link | ||
RHEL8_REPO: replace-with-rhel8-repo-http-link | ||
# Provide link to rhel6/7/8 repositories URL as we need all OS packages in order | ||
# to have real installation media for provisioning procedure | ||
# RHEL6_OS: replace-with-rhel6-os-http-link | ||
# RHEL7_OS: replace-with-rhel7-os-http-link | ||
# RHEL8_OS: | ||
# BASEOS: replace-with-rhel8-os-baseos-http-link | ||
# APPSTREAM: replace-with-rhel8-os-appstream-http-link | ||
# If capsule and satellite tools repositories available related packages will | ||
# be pulled from there instead of using the CDN channel. These information is | ||
# more suited to be used for downstream, downstream-iso and zstream builds. | ||
# CAPSULE_REPO: replace-with-capsule-http-link | ||
# SATTOOLS_REPO: | ||
# RHEL6: replace-with-rhel6-http-link | ||
# RHEL7: replace-with-rhel7-http-link | ||
# RHEL8: replace-with-rhel8-http-link | ||
# Downstream Satellite-maintain repo | ||
# SATMAINTENANCE_REPO: replace_with_sat_maintain_repo | ||
# Software Collection Repo | ||
# RHSCL_REPO: replace_with_rhscl_repo | ||
# Ansible 2.8 Repo | ||
# ANSIBLE_REPO: replace_with_ansible_repo | ||
# Added swid_tools_repo for installing swid-tools and dnf-plugin-swidtags packages | ||
# which are essentially required for generating swid tags in RHEL8 content host. | ||
# SWID_TOOLS_REPO: replace_with_swid_tools_repo |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
ROBOTTELO: | ||
# The directory where screenshots will be saved. | ||
# Note:- Content under /tmp may be deleted after a reboot. | ||
SCREENSHOTS_PATH: /tmp/robottelo/screenshots/ | ||
LOCALE: en_US.UTF-8 | ||
# Update upstream=false for downstream run | ||
UPSTREAM: false | ||
# Logging verbosity, one of debug, info, warning, error, critical | ||
VERBOSITY: debug | ||
# Directory for temporary files | ||
TMP_DIR: /var/tmp | ||
# Web Server to provide various test artifacts | ||
# ARTIFACTS_SERVER: replace-with-artifacts-server | ||
# Webdriver logging options | ||
# A list of commands to be logged | ||
LOG_DRIVER_COMMANDS: | ||
- newSession | ||
- windowMaximize | ||
- get | ||
- findElement | ||
- sendKeysToElement | ||
- clickElement | ||
- mouseMoveTo | ||
# - The URL of container hosting repos on SatLab | ||
# Example url - http://<container_hostname_or_ip>:<port> | ||
# Use https://github.com/SatelliteQE/fedorapeople-repos to deploy and configure the repos hosting container | ||
# REPOS_HOSTING_URL: replace-with-repo-hosting-url | ||
# browser tells robottelo which browser to use when testing UI. Valid values | ||
# are: | ||
# * selenium | ||
# * docker: to use a browser inside a docker container. In order to use this | ||
# feature make sure that the docker daemon is running locally and has its | ||
# unix socket published at unix://var/run/docker.sock. Also make sure that | ||
# the docker image selenium/standalone-firefox is available. | ||
# * remote: to access the remote browser, the webdriver and command_executor | ||
# are required. | ||
BROWSER: selenium | ||
# Webdriver to use. Valid values are chrome, firefox, ie, edge, phantomjs | ||
WEBDRIVER: chrome | ||
# Run browser for UI tests with semicolon delimeted options such as headless. Currently supported for only chrome. | ||
# BROWSEROPTIONS: replace-with-browser-options | ||
# The base DesiredCapabilities dict will be get by the browser | ||
# specified by webdriver config. If you override browserName then that | ||
# browser will be used instead. | ||
# WEBDRIVER_DESIRED_CAPABILITIES: | ||
# PLATFORM: | ||
# MAXDURATION: | ||
# IDLETIMEOUT: | ||
# START-MAXIMISED: | ||
# SCREENRESOLUTION: | ||
# TAGS: | ||
# Binary location for selected wedriver (not needed if using saucelabs) | ||
# WEBDRIVER_BINARY: /usr/bin/firefox | ||
# webdriver_binary=/usr/bin/chromedriver | ||
# webdriver_binary=C:\\Program Files (x86)\\Microsoft Web Driver\\MicrosoftWebDriver.exe | ||
WEBDRIVER_BINARY: /usr/bin/chromedriver | ||
# Zalenium command_executor | ||
# COMMAND_EXECUTOR: http://127.0.0.1:4444/wd/hub | ||
# CDN sync | ||
CDN: true | ||
# Run one datapoint or multiple datapoints for tests | ||
RUN_ONE_DATAPOINT: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
SERVER: | ||
# Server hostname | ||
# HOSTNAME: replace-with-satellite-hostname | ||
# HTTP scheme when building the server URL | ||
# Suggested values for "scheme" are "http" and "https". | ||
SCHEME: https | ||
# Server port | ||
PORT: 443 | ||
# SSH username | ||
SSH_USERNAME: root | ||
# Use either of SSH_PASSWORD or SSH_KEY or SSH_KEY_STRING below | ||
# SSH password if not using a SSH key to connect | ||
# SSH_PASSWORD: replace-with-ssh-passwd | ||
# Path to private ssh key to be used when connecting via SSH. | ||
# SSH_KEY: | ||
# private ssh key as a string to be used when connecting via SSH. | ||
# SSH_KEY_STRING: | ||
# Admin username when accessing API and UI | ||
ADMIN_USERNAME: admin | ||
# Admin password when accessing API and UI | ||
ADMIN_PASSWORD: changeme | ||
|
||
SSH_CLIENT: | ||
# Time to wait for the ssh command to finish, in seconds | ||
COMMAND_TIMEOUT: 300 | ||
# Time to wait for establishing the ssh connection, in seconds | ||
CONNECTION_TIMEOUT: 10 |
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 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 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 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
Oops, something went wrong.