This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch camel-quarkus-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git

commit e5d1ec35dd3aea375305e488f7315c40136f3635
Author: James Netherton <[email protected]>
AuthorDate: Wed May 14 09:54:25 2025 +0100

    Disable Quarkus Kubernetes dev services
---
 cluster-leader-election/src/main/resources/application.properties | 3 +++
 fhir/src/main/resources/application.properties                    | 3 +++
 file-bindy-ftp/src/main/resources/application.properties          | 3 +++
 kafka/src/main/resources/application.properties                   | 3 +++
 4 files changed, 12 insertions(+)

diff --git a/cluster-leader-election/src/main/resources/application.properties 
b/cluster-leader-election/src/main/resources/application.properties
index e3681da..374232c 100644
--- a/cluster-leader-election/src/main/resources/application.properties
+++ b/cluster-leader-election/src/main/resources/application.properties
@@ -20,6 +20,9 @@
 quarkus.banner.enabled = false
 quarkus.log.file.enable = true
 
+# No need for k8s dev services in this project
+quarkus.kubernetes-client.devservices.enabled = false
+
 #
 # Quarkus - Camel
 #
diff --git a/fhir/src/main/resources/application.properties 
b/fhir/src/main/resources/application.properties
index 8808322..e78f575 100644
--- a/fhir/src/main/resources/application.properties
+++ b/fhir/src/main/resources/application.properties
@@ -17,6 +17,9 @@
 
 quarkus.banner.enabled = false
 
+# No need for k8s dev services in this project
+quarkus.kubernetes-client.devservices.enabled = false
+
 # Camel FHIR configuration
 fhir.http.server.host = ${FHIR_SERVER_SERVICE_HOST:localhost}
 fhir.http.server.port = ${FHIR_SERVER_SERVICE_PORT:8080}
diff --git a/file-bindy-ftp/src/main/resources/application.properties 
b/file-bindy-ftp/src/main/resources/application.properties
index e0bdf53..1be918b 100644
--- a/file-bindy-ftp/src/main/resources/application.properties
+++ b/file-bindy-ftp/src/main/resources/application.properties
@@ -17,6 +17,9 @@
 
 quarkus.banner.enabled = false
 
+# No need for k8s dev services in this project
+quarkus.kubernetes-client.devservices.enabled = false
+
 # Uncomment if your application image is to be pushed to an external registry
 #quarkus.container-image.registry=my.docker-registry.net
 
diff --git a/kafka/src/main/resources/application.properties 
b/kafka/src/main/resources/application.properties
index ccfc4c1..1eee17e 100644
--- a/kafka/src/main/resources/application.properties
+++ b/kafka/src/main/resources/application.properties
@@ -15,6 +15,9 @@
 ## limitations under the License.
 ## ---------------------------------------------------------------------------
 
+# No need for k8s dev services in this project
+quarkus.kubernetes-client.devservices.enabled = false
+
 # Use Strimzi as it's power architecture compatible
 quarkus.kafka.devservices.provider = strimzi
 

Reply via email to