Replies: 1 comment
-
I had set |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, we have to generate knative-service manifests, which we have custom code outside jkube to do in
src/main/jkube/service.yml
but as there is no support to knative controller in jkube, thek8s:resource
ends up generating the regulardeployment.yml
manifest and merging to the finaltarget/kubernetes/kubernetes.yml
, this results in the cluster, since there will be 2 deployments, one from knative-service and the other from the deployment.yml . Only the service.yml is required, so I was thinking about ways to overcome this and have thetarget/kubernetes/kubernetes.yml
only with the knative service manifest.I thought about set
-Djkube.skip.resource=true
, butk8s:deploy
fails with:and to manually copy the service.yml to the missing locations.
Do you have other suggestions ?
Beta Was this translation helpful? Give feedback.
All reactions