Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Default reviewers for all files
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners

* @dlaw4608 @ekuris-redhat @eshulman2 @gryf @imatza-rh @mandre @stephenfin @tusharjadhav3302 @winiciusallan
25 changes: 25 additions & 0 deletions .github/workflows/ansible-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Ansible Lint

on:
pull_request:
branches:
- main

jobs:
ansible-lint:
runs-on: ubuntu-latest
container:
image: quay.io/shiftstack-qe/shiftstack-client
options: --user root
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Ansible collections
run: ansible-galaxy collection install -r requirements.yaml

- name: Run ansible-lint
run: ansible-lint --strict
env:
ANSIBLE_VAULT_PASSWORD_FILE: /home/cloud-admin/.vault-pass
8 changes: 8 additions & 0 deletions OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# See the OWNERS docs: https://git.k8s.io/community/contributors/guide/owners.md
# This file just uses aliases defined in OWNERS_ALIASES.

approvers:
- shiftstack-approvers

reviewers:
- shiftstack-reviewers
23 changes: 23 additions & 0 deletions OWNERS_ALIASES
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See the OWNERS_ALIASES docs: https://git.k8s.io/community/contributors/guide/owners.md#OWNERS_ALIASES

aliases:
shiftstack-approvers:
- dlaw4608
- ekuris-redhat
- eshulman2
- gryf
- imatza-rh
- mandre
- stephenfin
- tusharjadhav3302
- winiciusallan
shiftstack-reviewers:
- dlaw4608
- ekuris-redhat
- eshulman2
- gryf
- imatza-rh
- mandre
- stephenfin
- tusharjadhav3302
- winiciusallan
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
when: openshift_release_pull_spec is not defined or openshift_release_pull_spec == ''

- name: Extract pull secret from host cluster via Kubernetes API
changed_when: true
ansible.builtin.shell: |
python3 << 'PYEOF'
import yaml, json, base64, subprocess, os, sys, tempfile
Expand Down Expand Up @@ -127,6 +128,7 @@
mode: u=rwx,g=rw,o=r

- name: Extract OCP tools from release image {{ openshift_release_pull_spec }}
changed_when: true
ansible.builtin.command:
cmd: >-
timeout 900
Expand Down
Loading