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

Commit

Permalink
JBSConfig spec.enableRebuilds in body must be of type boolean
Browse files Browse the repository at this point in the history
Fix error:
```
The JBSConfig "jvm-build-config" is invalid: spec.enableRebuilds: Invalid value: "string": spec.enableRebuilds in body must be of type boolean: "string"
```
  • Loading branch information
pierDipi authored Feb 29, 2024
1 parent 4cda6e1 commit 72a9e2c
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 72a9e2c

Please sign in to comment.