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
10 changes: 10 additions & 0 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
inheritance: true
reviews:
path_filters:
# Exclude build artifacts and dependencies
- "!build/**"
- "!.venv/**"

# Exclude test fixtures
- "!**/testdata/**"
- "!**/.test-fixtures/**"
13 changes: 11 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@
# =============================================================================
#
# INSTALL
# pip install pre-commit
# pre-commit install
# For detailed setup instructions including uv (recommended) and pip,
# see: boilerplate/openshift/golang-osd-operator/docs/pre-commit.md
#
# Quick start (uv):
# uv sync && source .venv/bin/activate && pre-commit install
#
# Quick start (pip):
# pip install 'pre-commit==4.6.0' && pre-commit install
#
# USAGE
# pre-commit run # staged files only (developer / agent workflow)
Expand Down Expand Up @@ -35,6 +41,9 @@
# pre-existing violations on the first run. Stage and commit those fixes
# separately before day-to-day use.
#
# Fix commits can be excluded from git blame
# https://git-scm.com/docs/git-blame#Documentation/git-blame.txt---ignore-revs-filefile
#
# =============================================================================

repos:
Expand Down
3 changes: 2 additions & 1 deletion OWNERS_ALIASES
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
aliases:
srep-functional-team-aurora:
- AlexSmithGH
- BATMAN-JD
- dakotalongRH
- eth1030
- geowa4
- joshbranham
- luis-falcon
- reedcort
srep-functional-team-fedramp:
- theautoroboto
Expand Down
2 changes: 1 addition & 1 deletion boilerplate/_data/last-boilerplate-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
61dbfdfcfd8ab11f8ccbd58bf1d299c2fa3336dd
05d233f4d9639f3e1c54ead5c2b1eb59654091b6
3 changes: 2 additions & 1 deletion boilerplate/openshift/golang-osd-operator/OWNERS_ALIASES

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

123 changes: 123 additions & 0 deletions boilerplate/openshift/golang-osd-operator/docs/pre-commit.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 11 additions & 2 deletions boilerplate/openshift/golang-osd-operator/pre-commit-config.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 21 additions & 1 deletion boilerplate/openshift/golang-osd-operator/standard.mk

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ COPY . .
RUN make go-build

####
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.7-1778461551
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.8-1779809423

ENV USER_UID=1001 \
USER_NAME=cloud-ingress-operator
Expand Down
2 changes: 1 addition & 1 deletion build/Dockerfile.olm-registry
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ COPY ${SAAS_OPERATOR_DIR} manifests
RUN initializer --permissive

# ubi-micro does not work for clusters with fips enabled unless we make OpenSSL available
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.7-1778461551
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.8-1779809423

COPY --from=builder /bin/registry-server /bin/registry-server
COPY --from=builder /bin/grpc_health_probe /bin/grpc_health_probe
Expand Down
Loading