-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sync: rc-2023-09-26.1 to stage (#1304)
* Use Openshift golang-1.20 builder image (#1275) * Add kind cluster type (#1256) * Refactor operator config to use field.Error (#1276) * fix typo causing skip of DNS creation on restore (#1277) * ROX-19718: Add flag for fleetmanager gitops (#1283) * Specify reconcile interval in workers (#1265) * Add request body to rotate-secrets endpoint (#1272) * Disable automounting for egress proxy (#1286) * ROX-19808: Remove GitOps admin handler (#1290) Remove GitOps admin handler * ROX-19692: Add a release preparation workflow. (#1284) Prepare release workflow. * ROX-19735 - add operator configs to gitops (#1278) * ROX-19692: New workflow to auto-create production merge PRs. (#1291) New workflow to auto-create production merge PRs. * ROX-19810: Bump controller-runtime and stackrox deps (#1292) * Bump controller-runtime and stackrox deps * Bump openshift/api * Call /current_account before reserving quota (#1289) * Remove multi target build (#1259) * fixed restore endpoint (#1298) * ROX-19281: Fix nil pointer dereference in E2E tests when Central is not ready (#1216) * Rename ACSMS -> ACSCS in dev scripts (#1252) * Log result of current_account call execution (#1297) * Cleanup errors.go (#1299) --------- Co-authored-by: Vlad Bologa <[email protected]> Co-authored-by: Simon Bäumer <[email protected]> Co-authored-by: Johannes Malsam <[email protected]> Co-authored-by: Ludovic Cleroux <[email protected]> Co-authored-by: Ivan Degtiarenko <[email protected]> Co-authored-by: Alex Rukletsov <[email protected]> Co-authored-by: Marcin Owsiany <[email protected]> Co-authored-by: Aleksandr Kurlov <[email protected]> Co-authored-by: Yury Kovalev <[email protected]>
- Loading branch information
1 parent
0498c81
commit bd236b1
Showing
83 changed files
with
963 additions
and
932 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,18 @@ | ||
name: Create PR to merge stage into production | ||
on: | ||
push: | ||
branches: | ||
- stage | ||
|
||
jobs: | ||
prepare-prod-pr: | ||
runs-on: ubuntu-latest | ||
name: Prepare production PR | ||
steps: | ||
|
||
- name: Open a pull request | ||
uses: tretuna/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
FROM_BRANCH: 'stage' | ||
TO_BRANCH: 'production' |
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,45 @@ | ||
name: Start release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
commit: | ||
description: 'Commit to merge into the stage branch (branch name, tag name or SHA)' | ||
required: true | ||
default: 'main' | ||
type: string | ||
release_version: | ||
description: 'Release version in the format YYYY-MM-DD.N' | ||
required: true | ||
default: 'YYYY-MM-DD.1' | ||
type: string | ||
|
||
jobs: | ||
prepare-stage-pr: | ||
runs-on: ubuntu-latest | ||
name: Prepare stage PR | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
# action-create-branch does not accept symbolic refs, so we need to parse it here. | ||
- name: Canonicalize the commit ID | ||
run: | | ||
echo "commit_hash=$(git rev-parse --verify --quiet 'remotes/origin/${{ inputs.commit }}' || git rev-parse --verify --quiet '${{ inputs.commit }}')" >> "$GITHUB_ENV" | ||
- name: Create Release Candidate branch | ||
uses: peterjgrainger/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
with: | ||
branch: 'rc-${{ inputs.release_version }}' | ||
sha: '${{ env.commit_hash }}' | ||
|
||
- name: Open a pull request | ||
uses: tretuna/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
FROM_BRANCH: 'rc-${{ inputs.release_version }}' | ||
TO_BRANCH: 'stage' |
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
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.