-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Vincent Devillers <vdevillers76@gmail.com>
- Loading branch information
Showing
1,524 changed files
with
138,102 additions
and
194,961 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ targets: | |
- type: setuptools | ||
paths: | ||
exclude: | ||
- docs | ||
- site |
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,82 @@ | ||
name: Bug Report | ||
description: File a bug report. | ||
title: "[Bug]: " | ||
labels: ["bug", "needs triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: dropdown | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version of our F5 NGINX Ingress Controller are you running? | ||
options: | ||
- edge | ||
- 3.7.0 | ||
- 3.6.2 | ||
- 3.6.1 | ||
- 3.6.0 | ||
- 3.5.2 | ||
- 3.5.1 | ||
- 3.5.0 | ||
- 3.4.3 | ||
- 3.4.2 | ||
- 3.4.1 | ||
- 3.4.0 | ||
- 3.3.2 | ||
- 3.3.1 | ||
- 3.3.0 | ||
- 3.2.1 | ||
- 3.2.0 | ||
- 3.1.1 | ||
- 3.1.0 | ||
- 3.0.2 | ||
- 3.0.1 | ||
- 3.0.0 | ||
- 2.4.2 | ||
- 2.4.1 | ||
- 2.4.0 | ||
- 2.3.1 | ||
- 2.3.0 | ||
- 2.2.2 | ||
- 2.2.1 | ||
- 2.2.0 | ||
- 2.1.2 | ||
- 2.1.1 | ||
- 2.1.0 | ||
- 2.0.3 | ||
- 2.0.2 | ||
- 2.0.1 | ||
- 2.0.0 | ||
default: 0 | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: platform | ||
attributes: | ||
label: What Kubernetes platforms are you running on? | ||
options: | ||
- Kind | ||
- Minikube | ||
- Rancher | ||
- EKS Amazon | ||
- AKS Azure | ||
- GKE Google Cloud | ||
- Openshift | ||
- Other | ||
default: 0 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: steps-to-reproduce | ||
attributes: | ||
label: Steps to reproduce | ||
description: These steps will help us best reproduce the issue and come to a resolution. | ||
placeholder: | | ||
1. Deploy x to '...' using some.yaml | ||
2. View logs on '....' | ||
3. See error | ||
validations: | ||
required: true |
This file was deleted.
Oops, something went wrong.
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,8 @@ | ||
self-hosted-runner: | ||
# Labels of self-hosted runner in array of strings. | ||
labels: | ||
- kic-plus | ||
# Configuration variables in array of strings defined in your repository or | ||
# organization. `null` means disabling configuration variables check. | ||
# Empty array means no configuration variable is allowed. | ||
config-variables: null |
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,61 @@ | ||
name: Certify Openshift Image | ||
description: This action will attempt to certify an image for use in Openshift | ||
|
||
inputs: | ||
image: | ||
description: The image manifest to certify in the format <registry>/<repository>:<tag> | ||
required: true | ||
project_id: | ||
description: The certification project id | ||
required: true | ||
pyxis_token: | ||
description: The Pyxis API Token | ||
required: true | ||
preflight_version: | ||
description: The version of the preflight utility to install | ||
required: false | ||
default: 1.9.1 | ||
platforms: | ||
description: A comma separated list of architectures in the image manifest to certify | ||
required: false | ||
default: "amd64,arm64,ppc64le,s390x" | ||
submit: | ||
description: Submit results to Redhat PYAXIS | ||
required: false | ||
default: true | ||
|
||
outputs: | ||
result: | ||
description: Did the certification succeed? | ||
value: ${{ steps.result.outputs.result == 0 && true || false }} | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Install openshift-preflight | ||
run: | | ||
curl -fsSL https://github.com/redhat-openshift-ecosystem/openshift-preflight/releases/download/${{ inputs.preflight_version }}/preflight-linux-amd64 --output preflight | ||
chmod +x preflight | ||
shell: bash | ||
|
||
- name: Certify Images | ||
id: result | ||
run: | | ||
result=0 | ||
if [ -z "${{ inputs.platforms }}" ]; then | ||
# list of platforms passed | ||
IFS=',' read -ra arch_list <<< "${{ inputs.platforms }}" | ||
for arch in "${arch_list[@]}"; do | ||
architecture=("${arch#*/}") | ||
./preflight check container ${{ inputs.image }} --pyxis-api-token ${{ inputs.pyxis_token }} --certification-project-id ${{ inputs.project_id }} --platform $architecture ${{ inputs.submit && '--submit' || '' }} | ||
if [ $? -ne 0 ]; then | ||
result=1 | ||
fi | ||
done | ||
else | ||
# no platforms passed, this is either a manifest or a single platform image | ||
./preflight check container ${{ inputs.image }} --pyxis-api-token ${{ inputs.pyxis_token }} --certification-project-id ${{ inputs.project_id }} ${{ inputs.submit && '--submit' || '' }} | ||
result=$? | ||
fi | ||
echo "result=$result" >> $GITHUB_OUTPUT | ||
shell: bash |
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.