-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kubernetes extension generating knative resources with existing resources broken #29962
Comments
Sgitario
added a commit
to Sgitario/quarkus
that referenced
this issue
Dec 20, 2022
Sgitario
added a commit
to Sgitario/dekorate
that referenced
this issue
Dec 20, 2022
As far as I see, there are a couple of issues here:
|
Sgitario
added a commit
to Sgitario/dekorate
that referenced
this issue
Dec 20, 2022
Thanks @Sgitario ! |
Sgitario
added a commit
to dekorateio/dekorate
that referenced
this issue
Dec 21, 2022
Sgitario
added a commit
to Sgitario/quarkus
that referenced
this issue
Dec 21, 2022
Release changes: https://github.com/dekorateio/dekorate/releases/tag/3.2.0 Fix: quarkusio#29962 Relates: quarkusio#29807
ebullient
pushed a commit
to maxandersen/quarkus
that referenced
this issue
Jan 24, 2023
ebullient
pushed a commit
to maxandersen/quarkus
that referenced
this issue
Jan 24, 2023
Release changes: https://github.com/dekorateio/dekorate/releases/tag/3.2.0 Fix: quarkusio#29962 Relates: quarkusio#29807
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
When using the
quarkus-kubernetes
extension withquarkus.kubernetes.deployment-target=knative
, existing resources that may exist insrc/main/resources/kubernetes/knative.yml
get "munged".Expected behavior
I would expect anything in
src/main/resources/kubernetes/knative.yml
when running./mvnw package
to be in the resultingtarget/kubernetes/knative.yml
as-is.Actual behavior
Certain attributes in
src/main/kubernetes/knative.yml
are getting munged, specificallyspec.template.spec.containers[0].livenessProbe.httpGet.port
andspec.template.spec.containers[0].readinessProbe.httpGet.port
.How to Reproduce?
Reproducer:
quarkus-knative-extension-problem.zip
cd quarkus-knative-extension-problem
src/main/kubernetes/knative.yml
./mvnw clean package -DskipTests
target/kubernetes/knative.yml
Because of the
null
value, if I then tried to deploy the resulting yaml I would get errors, something likeOutput of
uname -a
orver
Output of
java -version
GraalVM version (if different from Java)
Quarkus version or git rev
2.15.0.Final
Build tool (ie. output of
mvnw --version
orgradlew --version
)Additional information
No response
The text was updated successfully, but these errors were encountered: