Re: Artemis plug-in missing console when deployed in kubernetes

2022-11-15 Thread Steve Hiller
Awesome! This gives me time to switch over to ArtemisCloud. Thanks again. On Tue, Nov 15, 2022 at 3:08 PM Domenico Francesco Bruscino wrote: > > yes the result is basically the same, indeed operators automate application > management, so you can focus on your core business. > > On Tue, 15 Nov 202

Re: Artemis plug-in missing console when deployed in kubernetes

2022-11-15 Thread Domenico Francesco Bruscino
yes the result is basically the same, indeed operators automate application management, so you can focus on your core business. On Tue, 15 Nov 2022 at 17:26, Steve Hiller wrote: > Thanks, Domenico! So in effect using ArtemisCloud.io would have saved > me set up time but the result is basically t

Re: Artemis plug-in missing console when deployed in kubernetes

2022-11-15 Thread Steve Hiller
Thanks, Domenico! So in effect using ArtemisCloud.io would have saved me set up time but the result is basically the same? On Tue, Nov 15, 2022 at 2:30 AM Domenico Francesco Bruscino wrote: > > Hi Steve, > > ArtemisClod.io provides a repository >

Re: Artemis plug-in missing console when deployed in kubernetes

2022-11-14 Thread Domenico Francesco Bruscino
Hi Steve, ArtemisClod.io provides a repository [1] for container images based ActiveMQ Artemis and an operator [2] that support custom resources

Re: Artemis plug-in missing console when deployed in kubernetes

2022-11-14 Thread Steve Hiller
HI All, With your help, I was able to resolve my kubernetes deployment that is based on the apache-artemis-2.26.0-Source/artemis-docker sample. In the process, it was suggested that I might want to consider using ArtemisCloud.io. The docker sample was pretty straightforward to set up. My question

Re: Artemis plug-in missing console when deployed in kubernetes

2022-11-14 Thread Steve Hiller
Thanks, Domenico! The issue was real simple -- in the ingress, the path on the backend service should have just been "/" on port 8161. On Fri, Nov 11, 2022 at 5:57 AM Domenico Francesco Bruscino wrote: > > Hi Steve, > > the ArtemisCloud.io operator create a ClusterIP >

Re: Artemis plug-in missing console when deployed in kubernetes

2022-11-11 Thread Domenico Francesco Bruscino
Hi Steve, the ArtemisCloud.io operator create a ClusterIP Service and an Ingress resource with the path /: kind: Service apiVersion: v1 metadata: name: ex-aao-wconsj-0-svc namespace: default labels: ActiveMQArtemis: ex-aao application: ex-aao-app spec: p

Re: Artemis plug-in missing console when deployed in kubernetes

2022-11-08 Thread Steve Hiller
Hi Domenico, I was on holiday so that is why I didn't respond to your email sooner. The console service is deployed as: apiVersion: v1 kind: Service metadata: name: artemis-console labels: name: artemis spec: type: NodePort ports: - port: 80 targetPort: 8161 selector: nam

Re: Artemis plug-in missing console when deployed in kubernetes

2022-11-02 Thread Domenico Francesco Bruscino
Hi Steve, ArtemisCloud.io operator creates a service for the ActiveMQArtemis web console and exposes it using an ingress resource on kubernetes. How are you exposing the ActiveMQArtemis web console? Regards, Domenico On Mon, 31 Oct 2022 at 20:48, Clebert Suconic wrote: > perhaps you could take

Re: Artemis plug-in missing console when deployed in kubernetes

2022-10-31 Thread Clebert Suconic
perhaps you could take a look at https://artemiscloud.io ? On Mon, Oct 31, 2022 at 1:46 PM Steve Hiller wrote: > > Hi Clebert - I am not sure either. In the past, I have stood up > classic AMQ and Hawtio in K8s - Hawtio seemed to work just fine with > AMQ, using a subdomain to reach it. > > On F

Re: Artemis plug-in missing console when deployed in kubernetes

2022-10-31 Thread Steve Hiller
Hi Clebert - I am not sure either. In the past, I have stood up classic AMQ and Hawtio in K8s - Hawtio seemed to work just fine with AMQ, using a subdomain to reach it. On Fri, Oct 28, 2022 at 7:29 PM Clebert Suconic wrote: > > The jolokia is just a web binding. > > > Not sure how to help there.

Re: Artemis plug-in missing console when deployed in kubernetes

2022-10-28 Thread Clebert Suconic
The jolokia is just a web binding. Not sure how to help there. From my POV here seems a simple app dev thing ? On Fri, Oct 28, 2022 at 4:03 PM Steve Hiller wrote: > Hi All, > > I successfully installed AMQ Artemis 2.26.0 as a single pod in a GCP > kubernetes cluster. The Docker image is bas

Artemis plug-in missing console when deployed in kubernetes

2022-10-28 Thread Steve Hiller
Hi All, I successfully installed AMQ Artemis 2.26.0 as a single pod in a GCP kubernetes cluster. The Docker image is based on the apache-artemis-2.26.0-Source/artemis-docker sample. Other pods can send messages to Artemis queues via standard Java JMS techniques (using Camel and SpringBoot to be mo