-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #204 from RedHat-EMEA-SSA-Team/devel
Merge devel into Master - Release 2022-02-16
- Loading branch information
Showing
73 changed files
with
957 additions
and
691 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
exclude_paths: | ||
- pipeline/ | ||
|
||
skip_list: | ||
- role-name | ||
- ignore-errors # Should be fixed | ||
- no-changed-when # Should be fixed | ||
- package-latest |
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,22 @@ | ||
--- | ||
exclude: pipeline | ||
|
||
repos: | ||
- repo: https://github.com/ansible-community/ansible-lint.git | ||
rev: v5.3.2 | ||
hooks: | ||
- id: ansible-lint | ||
name: Ansible-lint | ||
description: This hook runs ansible-lint. | ||
entry: ansible-lint --force-color | ||
language: python | ||
# do not pass files to ansible-lint, see: | ||
# https://github.com/ansible-community/ansible-lint/issues/611 | ||
pass_filenames: false | ||
always_run: true | ||
additional_dependencies: | ||
# https://github.com/pre-commit/pre-commit/issues/1526 | ||
# if you want to use only the base ansible version for linting, | ||
# replace 'community' extra with 'core' or just mention the exact | ||
# version of Ansible you want to install as a dependency. | ||
- .[community,yamllint] |
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,14 @@ | ||
--- | ||
extends: default | ||
|
||
rules: | ||
comments-indentation: false | ||
document-start: disable | ||
line-length: | ||
max: 180 | ||
level: warning | ||
truthy: | ||
allowed-values: ['true', 'false', 'yes', 'no'] | ||
braces: | ||
level: warning | ||
max-spaces-inside: 1 |
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
#!/usr/bin/env ansible-playbook | ||
#!/usr/bin/env ansible-playbook | ||
--- | ||
# If you like to play: ./ansible/create.yml --skip-tags public_dns,letsencrypt | ||
- hosts: localhost | ||
connection: local | ||
# gather_facts true because we need the public ip address | ||
gather_facts: true | ||
vars_files: | ||
- ../cluster.yml | ||
- ../cluster.yml | ||
|
||
tasks: | ||
- name: Deploy cluster | ||
import_role: | ||
name: openshift-4-cluster | ||
tasks_from: create.yml | ||
- name: Deploy cluster | ||
import_role: | ||
name: openshift-4-cluster | ||
tasks_from: create.yml |
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
#!/usr/bin/env ansible-playbook | ||
#!/usr/bin/env ansible-playbook | ||
--- | ||
# If you like to play: ./ansible/create.yml --skip-tags public_dns,letsencrypt | ||
- hosts: localhost | ||
connection: local | ||
# gather_facts true because we need the public ip address | ||
gather_facts: true | ||
vars_files: | ||
- ../cluster.yml | ||
- ../cluster.yml | ||
|
||
tasks: | ||
- name: Stop cluster | ||
import_role: | ||
name: openshift-4-cluster | ||
tasks_from: stop.yml | ||
- name: Stop cluster | ||
import_role: | ||
name: openshift-4-cluster | ||
tasks_from: stop.yml |
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
#!/usr/bin/env ansible-playbook | ||
#!/usr/bin/env ansible-playbook | ||
--- | ||
# If you like to play: ./ansible/create.yml --skip-tags public_dns,letsencrypt | ||
- hosts: localhost | ||
connection: local | ||
# gather_facts true because we need the public ip address | ||
gather_facts: true | ||
vars_files: | ||
- ../cluster.yml | ||
- ../cluster.yml | ||
|
||
tasks: | ||
- name: Start cluster | ||
import_role: | ||
name: openshift-4-cluster | ||
tasks_from: start.yml | ||
- name: Start cluster | ||
import_role: | ||
name: openshift-4-cluster | ||
tasks_from: start.yml |
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
#!/usr/bin/env ansible-playbook | ||
#!/usr/bin/env ansible-playbook | ||
--- | ||
# If you like to play: ./ansible/destroy.yml --skip-tags public_dns,letsencrypt | ||
|
||
- hosts: localhost | ||
connection: local | ||
gather_facts: true | ||
vars_files: | ||
- ../cluster.yml | ||
- ../cluster.yml | ||
tasks: | ||
- name: Destroy cluster | ||
import_role: | ||
name: openshift-4-cluster | ||
tasks_from: destroy.yml | ||
- name: Destroy cluster | ||
import_role: | ||
name: openshift-4-cluster | ||
tasks_from: destroy.yml |
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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
# vars file for ntp | ||
# vars file for ntp |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
# defaults file for web-terminal | ||
# defaults file for web-terminal |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
# handlers file for web-terminal | ||
# handlers file for web-terminal |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
# tasks file for web-terminal | ||
# tasks file for web-terminal |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
- hosts: localhost | ||
remote_user: root | ||
roles: | ||
- web-terminal | ||
- web-terminal |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
# vars file for web-terminal | ||
# vars file for web-terminal |
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 |
---|---|---|
|
@@ -13,5 +13,3 @@ | |
name: openshift-4-cluster | ||
tasks_from: certificate-install.yml | ||
when: letsencrypt_disabled == 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
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
--- | ||
- name: Delete DNS record at Hetzner | ||
uri: | ||
uri: # noqa no-handler | ||
url: "https://dns.hetzner.com/api/v1/records/{{ item.json.record.id }}" | ||
method: DELETE | ||
headers: | ||
Auth-API-Token: "{{ le_hetzner_account_api_token }}" | ||
Content-Type: 'application/json' | ||
with_items: "{{ hetzner_record.results }}" | ||
when: | ||
- sample_com_challenge is changed | ||
- sample_com_challenge is changed |
Oops, something went wrong.