Skip to content
This repository was archived by the owner on Nov 5, 2024. It is now read-only.

Fix JBSConfig spec.enableRebuilds in body must be of type boolean #241

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ kind: JBSConfig
metadata:
name: jvm-build-config
spec:
enableRebuilds: "true"
enableRebuilds: true
----

. Run `kubectl apply -f config.yaml`
Expand All @@ -139,7 +139,7 @@ kind: JBSConfig
metadata:
name: jvm-build-config
spec:
enableRebuilds: "true" <1>
enableRebuilds: true <1>
registry:
host: quay.io <2>
owner: OrgID <3>
Expand Down
Loading