Skip to content

Commit

Permalink
adding a small note about Kubernetes Client configuration properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaeltuelho committed Apr 19, 2021
1 parent 8f7d247 commit e4d7c40
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/src/main/asciidoc/deploying-to-kubernetes.adoc
Expand Up @@ -680,6 +680,20 @@ quarkus.kubernetes.readiness-probe.period=45s
In this example `initial-delay` and `period` are fields of the type `Probe`.
Below you will find tables describing all available types.

==== Client Connection Configuration
You may need to configure the connection to your Kubernetes cluster.
By default, it automatically uses the active _context_ used by `kubectl`.

For instance, if your cluster API endpoint uses a self-signed SSL Certificate you need to explicitly configure the client to trust it. You can achieve this by defining the following property:

[source,properties]
----
quarkus.kubernetes-client.trust-certs=true
----

The full list of the Kuberneters client configuration properties is provided below.

include::{generated-dir}/config/quarkus-kubernetes-client.adoc[opts=optional, leveloffset=+1]

==== Basic Types

Expand Down

0 comments on commit e4d7c40

Please sign in to comment.