Re: New blog post about Karaf with Kubernetes

2019-06-25 Thread Grzegorz Grzybek
Great article - thanks! regards Grzegorz Grzybek wt., 25 cze 2019 o 21:47 Jean-Baptiste Onofré napisał(a): > Hi guys, > > Just to let you know I just finished a new blog post about Karaf running > with Kubernetes (following the previous blog post about Karaf with Docker): > >

Re: Kar installer alto start bundle regardless of start=false in feature

2019-06-25 Thread Jean-Baptiste Onofré
Hi, not yet, I will do it before the end of this week. I will update the Jira I created about that. Regards JB On 25/06/2019 22:42, ntle wrote: > Hello JB, > > Have you got a chance to do the test ? > > Thai > > > > -- > Sent from: http://karaf.922171.n3.nabble.com/Karaf-User-f930749.html

Re: New blog post about Karaf with Kubernetes

2019-06-25 Thread Noobtube Account
Thanks, this is something we’ve been meaning to look at. On Wed, 26 Jun 2019 at 5:46 am, Jean-Baptiste Onofré wrote: > Hi guys, > > Just to let you know I just finished a new blog post about Karaf running > with Kubernetes (following the previous blog post about Karaf with Docker): > >

Re: Kar installer alto start bundle regardless of start=false in feature

2019-06-25 Thread ntle
Hello JB, Have you got a chance to do the test ? Thai -- Sent from: http://karaf.922171.n3.nabble.com/Karaf-User-f930749.html

Re: New blog post about Karaf with Kubernetes

2019-06-25 Thread Ryan Moquin
JB, awesome, I am going to check it out! Ryan On Tue, Jun 25, 2019, 3:46 PM Jean-Baptiste Onofré wrote: > Hi guys, > > Just to let you know I just finished a new blog post about Karaf running > with Kubernetes (following the previous blog post about Karaf with Docker): > >

New blog post about Karaf with Kubernetes

2019-06-25 Thread Jean-Baptiste Onofré
Hi guys, Just to let you know I just finished a new blog post about Karaf running with Kubernetes (following the previous blog post about Karaf with Docker): http://blog.nanthrax.net/?p=943 I will update the website with the link tomorrow. Enjoy ! Regards JB -- Jean-Baptiste Onofré

Re: karaf 4.2.6 httpwhiteboard service not deploy servlet context

2019-06-25 Thread ntle
I hooked eclipse to karaf debug session and found that the resource is not found by the bundle.getEntry(name). The resource name passed to getResource(name) is /index.html/ instead of index.html. -- Sent from: http://karaf.922171.n3.nabble.com/Karaf-User-f930749.html

Re: karaf 4.2.6 httpwhiteboard service not deploy servlet context

2019-06-25 Thread ntle
Hi JB, I tried adding alias and also a servlet and i can see the servletContext (/home) registered with paxweb but webconsole still not show any change. I am still getting 404 accessing my servlet and resources. To eliminate possibility of context path conflict, i only install pax-http-whiteboard

RE: Karaf 4.2.5 Jetty client

2019-06-25 Thread Leschke, Scott
I'm curious if anybody has any thoughts on my message below. I'm I setting up for HTTPS correctly? Regards, Scott From: Leschke, Scott Sent: Friday, June 21, 2019 9:16 AM To: user@karaf.apache.org Subject: RE: Karaf 4.2.5 Jetty client For the realm, I'm using an arbitrary string. Is there a

Re: karaf 4.2.6 httpwhiteboard service not deploy servlet context

2019-06-25 Thread Jean-Baptiste Onofré
Yes, alias is pax-web specific. It's just to try. Regards JB On 25/06/2019 15:56, ntle wrote: > Thank you JB, > > I don't see any alias property in http whiteboard spec. can i just add like > below: > > @Component(service = IconsResourceService.class, > enabled=true, > property =

Re: karaf 4.2.6 httpwhiteboard service not deploy servlet context

2019-06-25 Thread ntle
Thank you JB, I don't see any alias property in http whiteboard spec. can i just add like below: @Component(service = IconsResourceService.class, enabled=true, property = { "alias=/home/icons/*",

Re: karaf 4.2.6 httpwhiteboard service not deploy servlet context

2019-06-25 Thread Jean-Baptiste Onofré
OK, it's maybe an issue specific to servlet context. I will add a itest in Karaf. We already have itests covering servlet whiteboard, but not directly servlet context. Regards JB On 25/06/2019 15:37, ntle wrote: > Hi JB, > > The same context is listed with http:list > > karaf@root()>

Re: Feature Update Technique

2019-06-25 Thread Jean-Baptiste Onofré
Remember to do feature:repo-refresh if you changed the features XML. feature:update or bundle:update or bundle:watch works anyway. Regards JB On 25/06/2019 15:04, cooshal wrote: > I also had similar issues, while trying to update the feature by simply > replacing the older artifacts with the

Re: karaf 4.2.6 httpwhiteboard service not deploy servlet context

2019-06-25 Thread ntle
Hi JB, The same context is listed with http:list karaf@root()> http:list ID | Servlet | Servlet-Name | State | Alias | Url +--+--+-+-+ 100 |

Re: Feature Update Technique

2019-06-25 Thread cooshal
I also had similar issues, while trying to update the feature by simply replacing the older artifacts with the new one (situated in the same location [I was using file system to install feature bundles]). Thus, I found that upgrading features with a newer version was an easier and better option.