You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have created my first Dapr application. Really simple contraoller with
@InjectprivateSyncDaprClientm_dapr;
privatefinalAtomicIntegerm_counter = newAtomicInteger( 1 );
@POST@Path( "/topic2" )
@Topic( name = "topic2" )
publicStringeventOnTopic2( @NonnullfinalStringp_content )
{
System.out.println( "App1 received event from topic2: content=" + p_content );
return"App1 received event from topic2";
}
Append to my pom.xml all the Dapr and Quarkus dependencies, so I can build a docker container which starts. In My K8 I install Dapr with a Helm chart https://dapr.github.io/helm-charts/ all pods are starting, but it seems that my Quarkus app does not register on my Dapr instance.
So how I need to configure my Quarkus application.yml that it can be used with my setup?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello,,
I have created my first Dapr application. Really simple contraoller with
Append to my pom.xml all the Dapr and Quarkus dependencies, so I can build a docker container which starts. In My K8 I install Dapr with a Helm chart https://dapr.github.io/helm-charts/ all pods are starting, but it seems that my Quarkus app does not register on my Dapr instance.
So how I need to configure my Quarkus application.yml that it can be used with my setup?
Thanks a lot
Beta Was this translation helpful? Give feedback.
All reactions