-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(centpkg-sig): override the default config (#590)
Override the default config, since we are going to require the usage of GitLab.com for more streamlined experience across both CentOS Stream and CentOS SIGs. Fixes packit/packit#2305
- Loading branch information
Showing
7 changed files
with
95 additions
and
0 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,11 @@ | ||
# Copyright Contributors to the Packit project. | ||
# SPDX-License-Identifier: MIT | ||
|
||
--- | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: centpkg-sig | ||
type: Opaque | ||
data: | ||
centpkg-sig.conf: "{{ lookup('template', '{{ path_to_secrets }}/centpkg-sig.conf.j2', rstrip=False) | b64encode }}" |
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,32 @@ | ||
[centpkg-sig] | ||
lookaside = https://git.centos.org/sources | ||
lookasidehash = sha512 | ||
lookaside_cgi = https://git.centos.org/sources/upload_sig.cgi | ||
# lookaside_cgi = https://git.centos.org/sources/upload.cgi | ||
distgit_namespaced = True | ||
distgit_namespaces = rpms | ||
gitbaseurl = git+ssh://[email protected]/CentOS/%(repo)s.git | ||
anongiturl = https://gitlab.com/CentOS/%(repo)s.git | ||
branchre = c\d+s?-sig-.+|master$ | ||
kojiprofile = cbs | ||
build_client = cbs | ||
lookaside_namespaced = True | ||
git_excludes = | ||
i386/ | ||
i686/ | ||
x86_64/ | ||
ppc/ | ||
ppc64/ | ||
ia64/ | ||
mips/ | ||
arm/ | ||
noarch/ | ||
/*.src.rpm | ||
/build*.log | ||
/.build-*.log | ||
results_*/ | ||
clog | ||
|
||
[centpkg-sig.distgit] | ||
apibaseurl = https://gitlab.com | ||
token = {{ vault.packit_service.authentication['gitlab.com'].token }} |
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,32 @@ | ||
[centpkg-sig] | ||
lookaside = https://git.centos.org/sources | ||
lookasidehash = sha512 | ||
lookaside_cgi = https://git.centos.org/sources/upload_sig.cgi | ||
# lookaside_cgi = https://git.centos.org/sources/upload.cgi | ||
distgit_namespaced = True | ||
distgit_namespaces = rpms | ||
gitbaseurl = git+ssh://[email protected]/CentOS/%(repo)s.git | ||
anongiturl = https://gitlab.com/CentOS/%(repo)s.git | ||
branchre = c\d+s?-sig-.+|master$ | ||
kojiprofile = cbs | ||
build_client = cbs | ||
lookaside_namespaced = True | ||
git_excludes = | ||
i386/ | ||
i686/ | ||
x86_64/ | ||
ppc/ | ||
ppc64/ | ||
ia64/ | ||
mips/ | ||
arm/ | ||
noarch/ | ||
/*.src.rpm | ||
/build*.log | ||
/.build-*.log | ||
results_*/ | ||
clog | ||
|
||
[centpkg-sig.distgit] | ||
apibaseurl = https://gitlab.com | ||
token = {{ vault.packit_service.authentication['gitlab.com'].token }} |