diff --git a/generic-examples/http/PlatformHttpsServer.java b/generic-examples/http/PlatformHttpsServer.java index b8fcb3e..8fcb26e 100644 --- a/generic-examples/http/PlatformHttpsServer.java +++ b/generic-examples/http/PlatformHttpsServer.java @@ -26,8 +26,8 @@ // Integration execution // -// kamel run PlatformHttpsServer.java -p quarkus.http.ssl.certificate.file=/etc/ssl/my-self-signed-ssl/server.crt -// -p quarkus.http.ssl.certificate.key-file=/etc/ssl/my-self-signed-ssl/server.key +// kamel run PlatformHttpsServer.java -p quarkus.http.ssl.certificate.files=/etc/ssl/my-self-signed-ssl/server.crt +// -p quarkus.http.ssl.certificate.key-files=/etc/ssl/my-self-signed-ssl/server.key // --resource secret:my-self-signed-ssl@/etc/ssl/my-self-signed-ssl // -t container.port=8443 -t service.type=NodePort --dev diff --git a/generic-examples/traits/health/README.md b/generic-examples/traits/health/README.md index ac3765a..6bc0b6f 100644 --- a/generic-examples/traits/health/README.md +++ b/generic-examples/traits/health/README.md @@ -55,8 +55,8 @@ kubectl create secret tls my-tls-secret --cert=/tmp/integration-cert.pem --key=/ Run the integration ```sh kamel run \ - --property quarkus.http.ssl.certificate.file=/etc/camel/conf.d/_secrets/my-tls-secret/tls.crt \ - --property quarkus.http.ssl.certificate.key-file=/etc/camel/conf.d/_secrets/my-tls-secret/tls.key \ + --property quarkus.http.ssl.certificate.files=/etc/camel/conf.d/_secrets/my-tls-secret/tls.crt \ + --property quarkus.http.ssl.certificate.key-files=/etc/camel/conf.d/_secrets/my-tls-secret/tls.key \ --config secret:my-tls-secret \ --pod-template patch_probe.yaml \ --name health \