|
Type |
Default |
The OpenShift flavor / version to use. Older versions of OpenShift have minor differences in the labels and fields they support. This option allows users to have their manifests automatically aligned to the OpenShift 'flavor' they use.
Environment variable: QUARKUS_OPENSHIFT_FLAVOR
|
|
v4
|
quarkus.openshift.deployment-kind
The kind of the deployment resource to use. Supported values are 'Deployment', 'StatefulSet', 'Job', 'CronJob' and 'DeploymentConfig'. Defaults to 'DeploymentConfig' if flavor == v3 , or 'Deployment' otherwise. DeploymentConfig is deprecated as of OpenShift 4.14. See https://access.redhat.com/articles/7041372 for details.
Environment variable: QUARKUS_OPENSHIFT_DEPLOYMENT_KIND
|
deployment , deployment-config , stateful-set , job , cron-job , knative-service
|
|
quarkus.openshift.part-of
The name of the group this component belongs too
Environment variable: QUARKUS_OPENSHIFT_PART_OF
|
string |
|
The name of the application. This value will be used for naming Kubernetes resources like: 'Deployment', 'Service' and so on…
Environment variable: QUARKUS_OPENSHIFT_NAME
|
string |
|
quarkus.openshift.version
The version of the application.
Environment variable: QUARKUS_OPENSHIFT_VERSION
|
string |
|
quarkus.openshift.namespace
Environment variable: QUARKUS_OPENSHIFT_NAMESPACE
|
string |
|
quarkus.openshift.labels."label-name"
Custom labels to add to all resources
Environment variable: QUARKUS_OPENSHIFT_LABELS__LABEL_NAME_
|
Map<String,String> |
|
quarkus.openshift.annotations."annotation-name"
Custom annotations to add to all resources
Environment variable: QUARKUS_OPENSHIFT_ANNOTATIONS__ANNOTATION_NAME_
|
Map<String,String> |
|
quarkus.openshift.add-build-timestamp
Add the build timestamp to the Kubernetes annotations This is a very useful way to have manifests of successive builds of the same application differ - thus ensuring that Kubernetes will apply the updated resources
Environment variable: QUARKUS_OPENSHIFT_ADD_BUILD_TIMESTAMP
|
boolean |
true
|
quarkus.openshift.working-dir
Environment variable: QUARKUS_OPENSHIFT_WORKING_DIR
|
string |
|
quarkus.openshift.command
Environment variable: QUARKUS_OPENSHIFT_COMMAND
|
list of string |
|
quarkus.openshift.arguments
Environment variable: QUARKUS_OPENSHIFT_ARGUMENTS
|
list of string |
|
quarkus.openshift.service-account
Environment variable: QUARKUS_OPENSHIFT_SERVICE_ACCOUNT
|
string |
|
quarkus.openshift.ports."ports".container-port
The port number. Refers to the container port.
Environment variable: QUARKUS_OPENSHIFT_PORTS__PORTS__CONTAINER_PORT
|
int |
|
quarkus.openshift.ports."ports".host-port
Environment variable: QUARKUS_OPENSHIFT_PORTS__PORTS__HOST_PORT
|
int |
|
quarkus.openshift.ports."ports".path
The application path (refers to web application path).
Environment variable: QUARKUS_OPENSHIFT_PORTS__PORTS__PATH
|
string |
/
|
quarkus.openshift.ports."ports".protocol
Environment variable: QUARKUS_OPENSHIFT_PORTS__PORTS__PROTOCOL
|
tcp , udp , sctp , http , proxy
|
tcp
|
quarkus.openshift.ports."ports".node-port
The nodePort to which this port should be mapped to. This only takes affect when the serviceType is set to node-port.
Environment variable: QUARKUS_OPENSHIFT_PORTS__PORTS__NODE_PORT
|
int |
|
quarkus.openshift.ports."ports".tls
If enabled, the port will be configured to use the schema HTTPS.
Environment variable: QUARKUS_OPENSHIFT_PORTS__PORTS__TLS
|
boolean |
false
|
quarkus.openshift.replicas
The number of desired pods
Environment variable: QUARKUS_OPENSHIFT_REPLICAS
|
int |
1
|
quarkus.openshift.service-type
The type of service that will be generated for the application
Environment variable: QUARKUS_OPENSHIFT_SERVICE_TYPE
|
cluster-ip , node-port , load-balancer , external-name
|
cluster-ip
|
quarkus.openshift.node-port
The nodePort to set when serviceType is set to nodePort
Environment variable: QUARKUS_OPENSHIFT_NODE_PORT
|
int |
|
quarkus.openshift.image-pull-policy
Environment variable: QUARKUS_OPENSHIFT_IMAGE_PULL_POLICY
|
always , if-not-present , never
|
always
|
quarkus.openshift.image-pull-secrets
Environment variable: QUARKUS_OPENSHIFT_IMAGE_PULL_SECRETS
|
list of string |
|
quarkus.openshift.generate-image-pull-secret
Enable generation of image pull secret, when the container image username and password are provided.
Environment variable: QUARKUS_OPENSHIFT_GENERATE_IMAGE_PULL_SECRET
|
boolean |
false
|
quarkus.openshift.liveness-probe.http-action-port
The port number to use when configuring the http get action. If not configured, the port corresponding to the httpActionPortName will be used.
Environment variable: QUARKUS_OPENSHIFT_LIVENESS_PROBE_HTTP_ACTION_PORT
|
int |
|
quarkus.openshift.liveness-probe.http-action-port-name
The port name for selecting the port of the HTTP get action.
Environment variable: QUARKUS_OPENSHIFT_LIVENESS_PROBE_HTTP_ACTION_PORT_NAME
|
string |
|
quarkus.openshift.liveness-probe.http-action-path
The http path to use for the probe. For this to work, the container port also needs to be set. Assuming the container port has been set (as per above comment), if execAction or tcpSocketAction are not set, an HTTP probe will be used automatically even if no path is set (which will result in the root path being used). If Smallrye Health is used, the path will automatically be set according to the health check path.
Environment variable: QUARKUS_OPENSHIFT_LIVENESS_PROBE_HTTP_ACTION_PATH
|
string |
|
quarkus.openshift.liveness-probe.http-action-scheme
The scheme of the HTTP get action. Can be either "HTTP" or "HTTPS".
Environment variable: QUARKUS_OPENSHIFT_LIVENESS_PROBE_HTTP_ACTION_SCHEME
|
string |
|
quarkus.openshift.liveness-probe.exec-action
The command to use for the probe.
Environment variable: QUARKUS_OPENSHIFT_LIVENESS_PROBE_EXEC_ACTION
|
string |
|
quarkus.openshift.liveness-probe.tcp-socket-action
The tcp socket to use for the probe (the format is host:port).
Environment variable: QUARKUS_OPENSHIFT_LIVENESS_PROBE_TCP_SOCKET_ACTION
|
string |
|
quarkus.openshift.liveness-probe.grpc-action
The gRPC port to use for the probe (the format is either port or port:service).
Environment variable: QUARKUS_OPENSHIFT_LIVENESS_PROBE_GRPC_ACTION
|
string |
|
quarkus.openshift.liveness-probe.grpc-action-enabled
If enabled and grpc-action is not provided, it will use the generated service name and the gRPC port.
Environment variable: QUARKUS_OPENSHIFT_LIVENESS_PROBE_GRPC_ACTION_ENABLED
|
boolean |
false
|
quarkus.openshift.liveness-probe.initial-delay
The amount of time to wait before starting to probe.
Environment variable: QUARKUS_OPENSHIFT_LIVENESS_PROBE_INITIAL_DELAY
|
Duration |
5S
|
quarkus.openshift.liveness-probe.period
The period in which the action should be called.
Environment variable: QUARKUS_OPENSHIFT_LIVENESS_PROBE_PERIOD
|
Duration |
10S
|
quarkus.openshift.liveness-probe.timeout
The amount of time to wait for each action.
Environment variable: QUARKUS_OPENSHIFT_LIVENESS_PROBE_TIMEOUT
|
Duration |
10S
|
quarkus.openshift.liveness-probe.success-threshold
The success threshold to use.
Environment variable: QUARKUS_OPENSHIFT_LIVENESS_PROBE_SUCCESS_THRESHOLD
|
int |
1
|
quarkus.openshift.liveness-probe.failure-threshold
The failure threshold to use.
Environment variable: QUARKUS_OPENSHIFT_LIVENESS_PROBE_FAILURE_THRESHOLD
|
int |
3
|
quarkus.openshift.readiness-probe.http-action-port
The port number to use when configuring the http get action. If not configured, the port corresponding to the httpActionPortName will be used.
Environment variable: QUARKUS_OPENSHIFT_READINESS_PROBE_HTTP_ACTION_PORT
|
int |
|
quarkus.openshift.readiness-probe.http-action-port-name
The port name for selecting the port of the HTTP get action.
Environment variable: QUARKUS_OPENSHIFT_READINESS_PROBE_HTTP_ACTION_PORT_NAME
|
string |
|
quarkus.openshift.readiness-probe.http-action-path
The http path to use for the probe. For this to work, the container port also needs to be set. Assuming the container port has been set (as per above comment), if execAction or tcpSocketAction are not set, an HTTP probe will be used automatically even if no path is set (which will result in the root path being used). If Smallrye Health is used, the path will automatically be set according to the health check path.
Environment variable: QUARKUS_OPENSHIFT_READINESS_PROBE_HTTP_ACTION_PATH
|
string |
|
quarkus.openshift.readiness-probe.http-action-scheme
The scheme of the HTTP get action. Can be either "HTTP" or "HTTPS".
Environment variable: QUARKUS_OPENSHIFT_READINESS_PROBE_HTTP_ACTION_SCHEME
|
string |
|
quarkus.openshift.readiness-probe.exec-action
The command to use for the probe.
Environment variable: QUARKUS_OPENSHIFT_READINESS_PROBE_EXEC_ACTION
|
string |
|
quarkus.openshift.readiness-probe.tcp-socket-action
The tcp socket to use for the probe (the format is host:port).
Environment variable: QUARKUS_OPENSHIFT_READINESS_PROBE_TCP_SOCKET_ACTION
|
string |
|
quarkus.openshift.readiness-probe.grpc-action
The gRPC port to use for the probe (the format is either port or port:service).
Environment variable: QUARKUS_OPENSHIFT_READINESS_PROBE_GRPC_ACTION
|
string |
|
quarkus.openshift.readiness-probe.grpc-action-enabled
If enabled and grpc-action is not provided, it will use the generated service name and the gRPC port.
Environment variable: QUARKUS_OPENSHIFT_READINESS_PROBE_GRPC_ACTION_ENABLED
|
boolean |
false
|
quarkus.openshift.readiness-probe.initial-delay
The amount of time to wait before starting to probe.
Environment variable: QUARKUS_OPENSHIFT_READINESS_PROBE_INITIAL_DELAY
|
Duration |
5S
|
quarkus.openshift.readiness-probe.period
The period in which the action should be called.
Environment variable: QUARKUS_OPENSHIFT_READINESS_PROBE_PERIOD
|
Duration |
10S
|
quarkus.openshift.readiness-probe.timeout
The amount of time to wait for each action.
Environment variable: QUARKUS_OPENSHIFT_READINESS_PROBE_TIMEOUT
|
Duration |
10S
|
quarkus.openshift.readiness-probe.success-threshold
The success threshold to use.
Environment variable: QUARKUS_OPENSHIFT_READINESS_PROBE_SUCCESS_THRESHOLD
|
int |
1
|
quarkus.openshift.readiness-probe.failure-threshold
The failure threshold to use.
Environment variable: QUARKUS_OPENSHIFT_READINESS_PROBE_FAILURE_THRESHOLD
|
int |
3
|
quarkus.openshift.startup-probe.http-action-port
The port number to use when configuring the http get action. If not configured, the port corresponding to the httpActionPortName will be used.
Environment variable: QUARKUS_OPENSHIFT_STARTUP_PROBE_HTTP_ACTION_PORT
|
int |
|
quarkus.openshift.startup-probe.http-action-port-name
The port name for selecting the port of the HTTP get action.
Environment variable: QUARKUS_OPENSHIFT_STARTUP_PROBE_HTTP_ACTION_PORT_NAME
|
string |
|
quarkus.openshift.startup-probe.http-action-path
The http path to use for the probe. For this to work, the container port also needs to be set. Assuming the container port has been set (as per above comment), if execAction or tcpSocketAction are not set, an HTTP probe will be used automatically even if no path is set (which will result in the root path being used). If Smallrye Health is used, the path will automatically be set according to the health check path.
Environment variable: QUARKUS_OPENSHIFT_STARTUP_PROBE_HTTP_ACTION_PATH
|
string |
|
quarkus.openshift.startup-probe.http-action-scheme
The scheme of the HTTP get action. Can be either "HTTP" or "HTTPS".
Environment variable: QUARKUS_OPENSHIFT_STARTUP_PROBE_HTTP_ACTION_SCHEME
|
string |
|
quarkus.openshift.startup-probe.exec-action
The command to use for the probe.
Environment variable: QUARKUS_OPENSHIFT_STARTUP_PROBE_EXEC_ACTION
|
string |
|
quarkus.openshift.startup-probe.tcp-socket-action
The tcp socket to use for the probe (the format is host:port).
Environment variable: QUARKUS_OPENSHIFT_STARTUP_PROBE_TCP_SOCKET_ACTION
|
string |
|
quarkus.openshift.startup-probe.grpc-action
The gRPC port to use for the probe (the format is either port or port:service).
Environment variable: QUARKUS_OPENSHIFT_STARTUP_PROBE_GRPC_ACTION
|
string |
|
quarkus.openshift.startup-probe.grpc-action-enabled
If enabled and grpc-action is not provided, it will use the generated service name and the gRPC port.
Environment variable: QUARKUS_OPENSHIFT_STARTUP_PROBE_GRPC_ACTION_ENABLED
|
boolean |
false
|
quarkus.openshift.startup-probe.initial-delay
The amount of time to wait before starting to probe.
Environment variable: QUARKUS_OPENSHIFT_STARTUP_PROBE_INITIAL_DELAY
|
Duration |
5S
|
quarkus.openshift.startup-probe.period
The period in which the action should be called.
Environment variable: QUARKUS_OPENSHIFT_STARTUP_PROBE_PERIOD
|
Duration |
10S
|
quarkus.openshift.startup-probe.timeout
The amount of time to wait for each action.
Environment variable: QUARKUS_OPENSHIFT_STARTUP_PROBE_TIMEOUT
|
Duration |
10S
|
quarkus.openshift.startup-probe.success-threshold
The success threshold to use.
Environment variable: QUARKUS_OPENSHIFT_STARTUP_PROBE_SUCCESS_THRESHOLD
|
int |
1
|
quarkus.openshift.startup-probe.failure-threshold
The failure threshold to use.
Environment variable: QUARKUS_OPENSHIFT_STARTUP_PROBE_FAILURE_THRESHOLD
|
int |
3
|
quarkus.openshift.prometheus.annotations
When true (the default), emit a set of annotations to identify services that should be scraped by prometheus for metrics. In configurations that use the Prometheus operator with ServiceMonitor, annotations may not be necessary.
Environment variable: QUARKUS_OPENSHIFT_PROMETHEUS_ANNOTATIONS
|
boolean |
true
|
quarkus.openshift.prometheus.generate-service-monitor
When true (the default), emit a set of annotations to identify services that should be scraped by prometheus for metrics. In configurations that use the Prometheus operator with ServiceMonitor, annotations may not be necessary.
Environment variable: QUARKUS_OPENSHIFT_PROMETHEUS_GENERATE_SERVICE_MONITOR
|
boolean |
true
|
quarkus.openshift.prometheus.prefix
Environment variable: QUARKUS_OPENSHIFT_PROMETHEUS_PREFIX
|
string |
prometheus.io
|
quarkus.openshift.prometheus.scrape
Define the annotation used to indicate services that should be scraped. By default, /scrape will be appended to the defined prefix.
Environment variable: QUARKUS_OPENSHIFT_PROMETHEUS_SCRAPE
|
string |
|
quarkus.openshift.prometheus.path
Define the annotation used to indicate the path to scrape. By default, /path will be appended to the defined prefix.
Environment variable: QUARKUS_OPENSHIFT_PROMETHEUS_PATH
|
string |
|
quarkus.openshift.prometheus.port
Define the annotation used to indicate the port to scrape. By default, /port will be appended to the defined prefix.
Environment variable: QUARKUS_OPENSHIFT_PROMETHEUS_PORT
|
string |
|
quarkus.openshift.prometheus.scheme
Define the annotation used to indicate the scheme to use for scraping By default, /scheme will be appended to the defined prefix.
Environment variable: QUARKUS_OPENSHIFT_PROMETHEUS_SCHEME
|
string |
|
quarkus.openshift.mounts."mounts".name
The name of the volumeName to mount.
Environment variable: QUARKUS_OPENSHIFT_MOUNTS__MOUNTS__NAME
|
string |
|
quarkus.openshift.mounts."mounts".path
Environment variable: QUARKUS_OPENSHIFT_MOUNTS__MOUNTS__PATH
|
string |
|
quarkus.openshift.mounts."mounts".sub-path
Path within the volumeName from which the container’s volumeName should be mounted.
Environment variable: QUARKUS_OPENSHIFT_MOUNTS__MOUNTS__SUB_PATH
|
string |
|
quarkus.openshift.mounts."mounts".read-only
Environment variable: QUARKUS_OPENSHIFT_MOUNTS__MOUNTS__READ_ONLY
|
boolean |
false
|
quarkus.openshift.secret-volumes."secret-volumes".secret-name
The name of the secret to mount.
Environment variable: QUARKUS_OPENSHIFT_SECRET_VOLUMES__SECRET_VOLUMES__SECRET_NAME
|
string |
required |
quarkus.openshift.secret-volumes."secret-volumes".default-mode
Default mode. When specifying an octal number, leading zero must be present.
Environment variable: QUARKUS_OPENSHIFT_SECRET_VOLUMES__SECRET_VOLUMES__DEFAULT_MODE
|
string |
0600
|
quarkus.openshift.secret-volumes."secret-volumes".items."items".path
The path where the file will be mounted.
Environment variable: QUARKUS_OPENSHIFT_SECRET_VOLUMES__SECRET_VOLUMES__ITEMS__ITEMS__PATH
|
string |
required |
quarkus.openshift.secret-volumes."secret-volumes".items."items".mode
It must be a value between 0000 and 0777. If not specified, the volume defaultMode will be used.
Environment variable: QUARKUS_OPENSHIFT_SECRET_VOLUMES__SECRET_VOLUMES__ITEMS__ITEMS__MODE
|
int |
-1
|
quarkus.openshift.secret-volumes."secret-volumes".optional
Environment variable: QUARKUS_OPENSHIFT_SECRET_VOLUMES__SECRET_VOLUMES__OPTIONAL
|
boolean |
false
|
quarkus.openshift.config-map-volumes."config-map-volumes".config-map-name
The name of the ConfigMap to mount.
Environment variable: QUARKUS_OPENSHIFT_CONFIG_MAP_VOLUMES__CONFIG_MAP_VOLUMES__CONFIG_MAP_NAME
|
string |
required |
quarkus.openshift.config-map-volumes."config-map-volumes".default-mode
Default mode. When specifying an octal number, leading zero must be present.
Environment variable: QUARKUS_OPENSHIFT_CONFIG_MAP_VOLUMES__CONFIG_MAP_VOLUMES__DEFAULT_MODE
|
string |
0600
|
quarkus.openshift.config-map-volumes."config-map-volumes".items."items".path
The path where the file will be mounted.
Environment variable: QUARKUS_OPENSHIFT_CONFIG_MAP_VOLUMES__CONFIG_MAP_VOLUMES__ITEMS__ITEMS__PATH
|
string |
required |
quarkus.openshift.config-map-volumes."config-map-volumes".items."items".mode
It must be a value between 0000 and 0777. If not specified, the volume defaultMode will be used.
Environment variable: QUARKUS_OPENSHIFT_CONFIG_MAP_VOLUMES__CONFIG_MAP_VOLUMES__ITEMS__ITEMS__MODE
|
int |
-1
|
quarkus.openshift.config-map-volumes."config-map-volumes".optional
Environment variable: QUARKUS_OPENSHIFT_CONFIG_MAP_VOLUMES__CONFIG_MAP_VOLUMES__OPTIONAL
|
boolean |
false
|
quarkus.openshift.empty-dir-volumes
Environment variable: QUARKUS_OPENSHIFT_EMPTY_DIR_VOLUMES
|
list of string |
|
quarkus.openshift.git-repo-volumes."git-repo-volumes".repository
Environment variable: QUARKUS_OPENSHIFT_GIT_REPO_VOLUMES__GIT_REPO_VOLUMES__REPOSITORY
|
string |
required |
quarkus.openshift.git-repo-volumes."git-repo-volumes".directory
The directory of the repository to mount.
Environment variable: QUARKUS_OPENSHIFT_GIT_REPO_VOLUMES__GIT_REPO_VOLUMES__DIRECTORY
|
string |
|
quarkus.openshift.git-repo-volumes."git-repo-volumes".revision
Environment variable: QUARKUS_OPENSHIFT_GIT_REPO_VOLUMES__GIT_REPO_VOLUMES__REVISION
|
string |
|
quarkus.openshift.pvc-volumes."pvc-volumes".claim-name
The name of the claim to mount.
Environment variable: QUARKUS_OPENSHIFT_PVC_VOLUMES__PVC_VOLUMES__CLAIM_NAME
|
string |
required |
quarkus.openshift.pvc-volumes."pvc-volumes".default-mode
Default mode. When specifying an octal number, leading zero must be present.
Environment variable: QUARKUS_OPENSHIFT_PVC_VOLUMES__PVC_VOLUMES__DEFAULT_MODE
|
string |
0600
|
quarkus.openshift.pvc-volumes."pvc-volumes".optional
Environment variable: QUARKUS_OPENSHIFT_PVC_VOLUMES__PVC_VOLUMES__OPTIONAL
|
boolean |
false
|
quarkus.openshift.aws-elastic-block-store-volumes."aws-elastic-block-store-volumes".volume-id
The name of the disk to mount.
Environment variable: QUARKUS_OPENSHIFT_AWS_ELASTIC_BLOCK_STORE_VOLUMES__AWS_ELASTIC_BLOCK_STORE_VOLUMES__VOLUME_ID
|
string |
required |
quarkus.openshift.aws-elastic-block-store-volumes."aws-elastic-block-store-volumes".partition
Environment variable: QUARKUS_OPENSHIFT_AWS_ELASTIC_BLOCK_STORE_VOLUMES__AWS_ELASTIC_BLOCK_STORE_VOLUMES__PARTITION
|
int |
|
quarkus.openshift.aws-elastic-block-store-volumes."aws-elastic-block-store-volumes".fs-type
Environment variable: QUARKUS_OPENSHIFT_AWS_ELASTIC_BLOCK_STORE_VOLUMES__AWS_ELASTIC_BLOCK_STORE_VOLUMES__FS_TYPE
|
string |
ext4
|
quarkus.openshift.aws-elastic-block-store-volumes."aws-elastic-block-store-volumes".read-only
Whether the volumeName is read only or not.
Environment variable: QUARKUS_OPENSHIFT_AWS_ELASTIC_BLOCK_STORE_VOLUMES__AWS_ELASTIC_BLOCK_STORE_VOLUMES__READ_ONLY
|
boolean |
false
|
quarkus.openshift.azure-file-volumes."azure-file-volumes".share-name
Environment variable: QUARKUS_OPENSHIFT_AZURE_FILE_VOLUMES__AZURE_FILE_VOLUMES__SHARE_NAME
|
string |
required |
quarkus.openshift.azure-file-volumes."azure-file-volumes".secret-name
Environment variable: QUARKUS_OPENSHIFT_AZURE_FILE_VOLUMES__AZURE_FILE_VOLUMES__SECRET_NAME
|
string |
required |
quarkus.openshift.azure-file-volumes."azure-file-volumes".read-only
Whether the volumeName is read only or not.
Environment variable: QUARKUS_OPENSHIFT_AZURE_FILE_VOLUMES__AZURE_FILE_VOLUMES__READ_ONLY
|
boolean |
false
|
quarkus.openshift.azure-disk-volumes."azure-disk-volumes".disk-name
The name of the disk to mount.
Environment variable: QUARKUS_OPENSHIFT_AZURE_DISK_VOLUMES__AZURE_DISK_VOLUMES__DISK_NAME
|
string |
required |
quarkus.openshift.azure-disk-volumes."azure-disk-volumes".disk-uri
The URI of the vhd blob object OR the resourceID of an Azure managed data disk if Kind is Managed
Environment variable: QUARKUS_OPENSHIFT_AZURE_DISK_VOLUMES__AZURE_DISK_VOLUMES__DISK_URI
|
string |
required |
quarkus.openshift.azure-disk-volumes."azure-disk-volumes".kind
Environment variable: QUARKUS_OPENSHIFT_AZURE_DISK_VOLUMES__AZURE_DISK_VOLUMES__KIND
|
|
managed
|
quarkus.openshift.azure-disk-volumes."azure-disk-volumes".caching-mode
Environment variable: QUARKUS_OPENSHIFT_AZURE_DISK_VOLUMES__AZURE_DISK_VOLUMES__CACHING_MODE
|
read-write , read-only , none
|
read-write
|
quarkus.openshift.azure-disk-volumes."azure-disk-volumes".fs-type
Environment variable: QUARKUS_OPENSHIFT_AZURE_DISK_VOLUMES__AZURE_DISK_VOLUMES__FS_TYPE
|
string |
ext4
|
quarkus.openshift.azure-disk-volumes."azure-disk-volumes".read-only
Whether the volumeName is read only or not.
Environment variable: QUARKUS_OPENSHIFT_AZURE_DISK_VOLUMES__AZURE_DISK_VOLUMES__READ_ONLY
|
boolean |
false
|
quarkus.openshift.init-containers."init-containers".image
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__IMAGE
|
string |
|
quarkus.openshift.init-containers."init-containers".working-dir
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__WORKING_DIR
|
string |
|
quarkus.openshift.init-containers."init-containers".command
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__COMMAND
|
list of string |
|
quarkus.openshift.init-containers."init-containers".arguments
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__ARGUMENTS
|
list of string |
|
quarkus.openshift.init-containers."init-containers".service-account
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__SERVICE_ACCOUNT
|
string |
|
quarkus.openshift.init-containers."init-containers".host
The host under which the application is going to be exposed.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__HOST
|
string |
|
quarkus.openshift.init-containers."init-containers".ports."ports".container-port
The port number. Refers to the container port.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__PORTS__PORTS__CONTAINER_PORT
|
int |
|
quarkus.openshift.init-containers."init-containers".ports."ports".host-port
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__PORTS__PORTS__HOST_PORT
|
int |
|
quarkus.openshift.init-containers."init-containers".ports."ports".path
The application path (refers to web application path).
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__PORTS__PORTS__PATH
|
string |
/
|
quarkus.openshift.init-containers."init-containers".ports."ports".protocol
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__PORTS__PORTS__PROTOCOL
|
tcp , udp , sctp , http , proxy
|
tcp
|
quarkus.openshift.init-containers."init-containers".ports."ports".node-port
The nodePort to which this port should be mapped to. This only takes affect when the serviceType is set to node-port.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__PORTS__PORTS__NODE_PORT
|
int |
|
quarkus.openshift.init-containers."init-containers".ports."ports".tls
If enabled, the port will be configured to use the schema HTTPS.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__PORTS__PORTS__TLS
|
boolean |
false
|
quarkus.openshift.init-containers."init-containers".image-pull-policy
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__IMAGE_PULL_POLICY
|
always , if-not-present , never
|
always
|
quarkus.openshift.init-containers."init-containers".image-pull-secrets
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__IMAGE_PULL_SECRETS
|
list of string |
|
quarkus.openshift.init-containers."init-containers".liveness-probe.http-action-port
The port number to use when configuring the http get action. If not configured, the port corresponding to the httpActionPortName will be used.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__LIVENESS_PROBE_HTTP_ACTION_PORT
|
int |
|
quarkus.openshift.init-containers."init-containers".liveness-probe.http-action-port-name
The port name for selecting the port of the HTTP get action.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__LIVENESS_PROBE_HTTP_ACTION_PORT_NAME
|
string |
|
quarkus.openshift.init-containers."init-containers".liveness-probe.http-action-path
The http path to use for the probe. For this to work, the container port also needs to be set. Assuming the container port has been set (as per above comment), if execAction or tcpSocketAction are not set, an HTTP probe will be used automatically even if no path is set (which will result in the root path being used). If Smallrye Health is used, the path will automatically be set according to the health check path.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__LIVENESS_PROBE_HTTP_ACTION_PATH
|
string |
|
quarkus.openshift.init-containers."init-containers".liveness-probe.http-action-scheme
The scheme of the HTTP get action. Can be either "HTTP" or "HTTPS".
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__LIVENESS_PROBE_HTTP_ACTION_SCHEME
|
string |
|
quarkus.openshift.init-containers."init-containers".liveness-probe.exec-action
The command to use for the probe.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__LIVENESS_PROBE_EXEC_ACTION
|
string |
|
quarkus.openshift.init-containers."init-containers".liveness-probe.tcp-socket-action
The tcp socket to use for the probe (the format is host:port).
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__LIVENESS_PROBE_TCP_SOCKET_ACTION
|
string |
|
quarkus.openshift.init-containers."init-containers".liveness-probe.grpc-action
The gRPC port to use for the probe (the format is either port or port:service).
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__LIVENESS_PROBE_GRPC_ACTION
|
string |
|
quarkus.openshift.init-containers."init-containers".liveness-probe.grpc-action-enabled
If enabled and grpc-action is not provided, it will use the generated service name and the gRPC port.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__LIVENESS_PROBE_GRPC_ACTION_ENABLED
|
boolean |
false
|
quarkus.openshift.init-containers."init-containers".liveness-probe.initial-delay
The amount of time to wait before starting to probe.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__LIVENESS_PROBE_INITIAL_DELAY
|
Duration |
5S
|
quarkus.openshift.init-containers."init-containers".liveness-probe.period
The period in which the action should be called.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__LIVENESS_PROBE_PERIOD
|
Duration |
10S
|
quarkus.openshift.init-containers."init-containers".liveness-probe.timeout
The amount of time to wait for each action.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__LIVENESS_PROBE_TIMEOUT
|
Duration |
10S
|
quarkus.openshift.init-containers."init-containers".liveness-probe.success-threshold
The success threshold to use.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__LIVENESS_PROBE_SUCCESS_THRESHOLD
|
int |
1
|
quarkus.openshift.init-containers."init-containers".liveness-probe.failure-threshold
The failure threshold to use.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__LIVENESS_PROBE_FAILURE_THRESHOLD
|
int |
3
|
quarkus.openshift.init-containers."init-containers".readiness-probe.http-action-port
The port number to use when configuring the http get action. If not configured, the port corresponding to the httpActionPortName will be used.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__READINESS_PROBE_HTTP_ACTION_PORT
|
int |
|
quarkus.openshift.init-containers."init-containers".readiness-probe.http-action-port-name
The port name for selecting the port of the HTTP get action.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__READINESS_PROBE_HTTP_ACTION_PORT_NAME
|
string |
|
quarkus.openshift.init-containers."init-containers".readiness-probe.http-action-path
The http path to use for the probe. For this to work, the container port also needs to be set. Assuming the container port has been set (as per above comment), if execAction or tcpSocketAction are not set, an HTTP probe will be used automatically even if no path is set (which will result in the root path being used). If Smallrye Health is used, the path will automatically be set according to the health check path.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__READINESS_PROBE_HTTP_ACTION_PATH
|
string |
|
quarkus.openshift.init-containers."init-containers".readiness-probe.http-action-scheme
The scheme of the HTTP get action. Can be either "HTTP" or "HTTPS".
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__READINESS_PROBE_HTTP_ACTION_SCHEME
|
string |
|
quarkus.openshift.init-containers."init-containers".readiness-probe.exec-action
The command to use for the probe.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__READINESS_PROBE_EXEC_ACTION
|
string |
|
quarkus.openshift.init-containers."init-containers".readiness-probe.tcp-socket-action
The tcp socket to use for the probe (the format is host:port).
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__READINESS_PROBE_TCP_SOCKET_ACTION
|
string |
|
quarkus.openshift.init-containers."init-containers".readiness-probe.grpc-action
The gRPC port to use for the probe (the format is either port or port:service).
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__READINESS_PROBE_GRPC_ACTION
|
string |
|
quarkus.openshift.init-containers."init-containers".readiness-probe.grpc-action-enabled
If enabled and grpc-action is not provided, it will use the generated service name and the gRPC port.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__READINESS_PROBE_GRPC_ACTION_ENABLED
|
boolean |
false
|
quarkus.openshift.init-containers."init-containers".readiness-probe.initial-delay
The amount of time to wait before starting to probe.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__READINESS_PROBE_INITIAL_DELAY
|
Duration |
5S
|
quarkus.openshift.init-containers."init-containers".readiness-probe.period
The period in which the action should be called.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__READINESS_PROBE_PERIOD
|
Duration |
10S
|
quarkus.openshift.init-containers."init-containers".readiness-probe.timeout
The amount of time to wait for each action.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__READINESS_PROBE_TIMEOUT
|
Duration |
10S
|
quarkus.openshift.init-containers."init-containers".readiness-probe.success-threshold
The success threshold to use.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__READINESS_PROBE_SUCCESS_THRESHOLD
|
int |
1
|
quarkus.openshift.init-containers."init-containers".readiness-probe.failure-threshold
The failure threshold to use.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__READINESS_PROBE_FAILURE_THRESHOLD
|
int |
3
|
quarkus.openshift.init-containers."init-containers".mounts."mounts".name
The name of the volumeName to mount.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__MOUNTS__MOUNTS__NAME
|
string |
|
quarkus.openshift.init-containers."init-containers".mounts."mounts".path
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__MOUNTS__MOUNTS__PATH
|
string |
|
quarkus.openshift.init-containers."init-containers".mounts."mounts".sub-path
Path within the volumeName from which the container’s volumeName should be mounted.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__MOUNTS__MOUNTS__SUB_PATH
|
string |
|
quarkus.openshift.init-containers."init-containers".mounts."mounts".read-only
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__MOUNTS__MOUNTS__READ_ONLY
|
boolean |
false
|
quarkus.openshift.init-containers."init-containers".resources.limits.cpu
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__RESOURCES_LIMITS_CPU
|
string |
|
quarkus.openshift.init-containers."init-containers".resources.limits.memory
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__RESOURCES_LIMITS_MEMORY
|
string |
|
quarkus.openshift.init-containers."init-containers".resources.requests.cpu
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__RESOURCES_REQUESTS_CPU
|
string |
|
quarkus.openshift.init-containers."init-containers".resources.requests.memory
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__RESOURCES_REQUESTS_MEMORY
|
string |
|
quarkus.openshift.init-containers."init-containers".env.secrets
The optional list of Secret names to load environment variables from.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__ENV_SECRETS
|
list of string |
|
quarkus.openshift.init-containers."init-containers".env.configmaps
The optional list of ConfigMap names to load environment variables from.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__ENV_CONFIGMAPS
|
list of string |
|
quarkus.openshift.init-containers."init-containers".env.fields."environment-variable-name"
The map associating environment variable names to their associated field references they take their value from.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__ENV_FIELDS__ENVIRONMENT_VARIABLE_NAME_
|
Map<String,String> |
|
quarkus.openshift.init-containers."init-containers".env.vars."vars"
The map associating environment name to its associated value.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__ENV_VARS__VARS_
|
Map<String,Optional<String>> |
|
quarkus.openshift.init-containers."init-containers".env.mapping."mapping".from-secret
The optional name of the Secret from which a value is to be extracted. Mutually exclusive with from-configmap .
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__ENV_MAPPING__MAPPING__FROM_SECRET
|
string |
|
quarkus.openshift.init-containers."init-containers".env.mapping."mapping".from-configmap
The optional name of the ConfigMap from which a value is to be extracted. Mutually exclusive with from-secret .
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__ENV_MAPPING__MAPPING__FROM_CONFIGMAP
|
string |
|
quarkus.openshift.init-containers."init-containers".env.mapping."mapping".with-key
The key identifying the field from which the value is extracted.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__ENV_MAPPING__MAPPING__WITH_KEY
|
string |
required |
quarkus.openshift.init-containers."init-containers".env.using-prefix."prefixes".for-secret
The optional prefix to use when adding the environment variable to the container.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__ENV_USING_PREFIX__PREFIXES__FOR_SECRET
|
string |
|
quarkus.openshift.init-containers."init-containers".env.using-prefix."prefixes".for-configmap
The optional prefix to use when adding the environment variable to the container.
Environment variable: QUARKUS_OPENSHIFT_INIT_CONTAINERS__INIT_CONTAINERS__ENV_USING_PREFIX__PREFIXES__FOR_CONFIGMAP
|
string |
|
quarkus.openshift.sidecars."sidecars".image
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__IMAGE
|
string |
|
quarkus.openshift.sidecars."sidecars".working-dir
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__WORKING_DIR
|
string |
|
quarkus.openshift.sidecars."sidecars".command
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__COMMAND
|
list of string |
|
quarkus.openshift.sidecars."sidecars".arguments
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__ARGUMENTS
|
list of string |
|
quarkus.openshift.sidecars."sidecars".service-account
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__SERVICE_ACCOUNT
|
string |
|
quarkus.openshift.sidecars."sidecars".host
The host under which the application is going to be exposed.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__HOST
|
string |
|
quarkus.openshift.sidecars."sidecars".ports."ports".container-port
The port number. Refers to the container port.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__PORTS__PORTS__CONTAINER_PORT
|
int |
|
quarkus.openshift.sidecars."sidecars".ports."ports".host-port
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__PORTS__PORTS__HOST_PORT
|
int |
|
quarkus.openshift.sidecars."sidecars".ports."ports".path
The application path (refers to web application path).
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__PORTS__PORTS__PATH
|
string |
/
|
quarkus.openshift.sidecars."sidecars".ports."ports".protocol
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__PORTS__PORTS__PROTOCOL
|
tcp , udp , sctp , http , proxy
|
tcp
|
quarkus.openshift.sidecars."sidecars".ports."ports".node-port
The nodePort to which this port should be mapped to. This only takes affect when the serviceType is set to node-port.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__PORTS__PORTS__NODE_PORT
|
int |
|
quarkus.openshift.sidecars."sidecars".ports."ports".tls
If enabled, the port will be configured to use the schema HTTPS.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__PORTS__PORTS__TLS
|
boolean |
false
|
quarkus.openshift.sidecars."sidecars".image-pull-policy
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__IMAGE_PULL_POLICY
|
always , if-not-present , never
|
always
|
quarkus.openshift.sidecars."sidecars".image-pull-secrets
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__IMAGE_PULL_SECRETS
|
list of string |
|
quarkus.openshift.sidecars."sidecars".liveness-probe.http-action-port
The port number to use when configuring the http get action. If not configured, the port corresponding to the httpActionPortName will be used.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__LIVENESS_PROBE_HTTP_ACTION_PORT
|
int |
|
quarkus.openshift.sidecars."sidecars".liveness-probe.http-action-port-name
The port name for selecting the port of the HTTP get action.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__LIVENESS_PROBE_HTTP_ACTION_PORT_NAME
|
string |
|
quarkus.openshift.sidecars."sidecars".liveness-probe.http-action-path
The http path to use for the probe. For this to work, the container port also needs to be set. Assuming the container port has been set (as per above comment), if execAction or tcpSocketAction are not set, an HTTP probe will be used automatically even if no path is set (which will result in the root path being used). If Smallrye Health is used, the path will automatically be set according to the health check path.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__LIVENESS_PROBE_HTTP_ACTION_PATH
|
string |
|
quarkus.openshift.sidecars."sidecars".liveness-probe.http-action-scheme
The scheme of the HTTP get action. Can be either "HTTP" or "HTTPS".
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__LIVENESS_PROBE_HTTP_ACTION_SCHEME
|
string |
|
quarkus.openshift.sidecars."sidecars".liveness-probe.exec-action
The command to use for the probe.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__LIVENESS_PROBE_EXEC_ACTION
|
string |
|
quarkus.openshift.sidecars."sidecars".liveness-probe.tcp-socket-action
The tcp socket to use for the probe (the format is host:port).
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__LIVENESS_PROBE_TCP_SOCKET_ACTION
|
string |
|
quarkus.openshift.sidecars."sidecars".liveness-probe.grpc-action
The gRPC port to use for the probe (the format is either port or port:service).
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__LIVENESS_PROBE_GRPC_ACTION
|
string |
|
quarkus.openshift.sidecars."sidecars".liveness-probe.grpc-action-enabled
If enabled and grpc-action is not provided, it will use the generated service name and the gRPC port.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__LIVENESS_PROBE_GRPC_ACTION_ENABLED
|
boolean |
false
|
quarkus.openshift.sidecars."sidecars".liveness-probe.initial-delay
The amount of time to wait before starting to probe.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__LIVENESS_PROBE_INITIAL_DELAY
|
Duration |
5S
|
quarkus.openshift.sidecars."sidecars".liveness-probe.period
The period in which the action should be called.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__LIVENESS_PROBE_PERIOD
|
Duration |
10S
|
quarkus.openshift.sidecars."sidecars".liveness-probe.timeout
The amount of time to wait for each action.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__LIVENESS_PROBE_TIMEOUT
|
Duration |
10S
|
quarkus.openshift.sidecars."sidecars".liveness-probe.success-threshold
The success threshold to use.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__LIVENESS_PROBE_SUCCESS_THRESHOLD
|
int |
1
|
quarkus.openshift.sidecars."sidecars".liveness-probe.failure-threshold
The failure threshold to use.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__LIVENESS_PROBE_FAILURE_THRESHOLD
|
int |
3
|
quarkus.openshift.sidecars."sidecars".readiness-probe.http-action-port
The port number to use when configuring the http get action. If not configured, the port corresponding to the httpActionPortName will be used.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__READINESS_PROBE_HTTP_ACTION_PORT
|
int |
|
quarkus.openshift.sidecars."sidecars".readiness-probe.http-action-port-name
The port name for selecting the port of the HTTP get action.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__READINESS_PROBE_HTTP_ACTION_PORT_NAME
|
string |
|
quarkus.openshift.sidecars."sidecars".readiness-probe.http-action-path
The http path to use for the probe. For this to work, the container port also needs to be set. Assuming the container port has been set (as per above comment), if execAction or tcpSocketAction are not set, an HTTP probe will be used automatically even if no path is set (which will result in the root path being used). If Smallrye Health is used, the path will automatically be set according to the health check path.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__READINESS_PROBE_HTTP_ACTION_PATH
|
string |
|
quarkus.openshift.sidecars."sidecars".readiness-probe.http-action-scheme
The scheme of the HTTP get action. Can be either "HTTP" or "HTTPS".
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__READINESS_PROBE_HTTP_ACTION_SCHEME
|
string |
|
quarkus.openshift.sidecars."sidecars".readiness-probe.exec-action
The command to use for the probe.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__READINESS_PROBE_EXEC_ACTION
|
string |
|
quarkus.openshift.sidecars."sidecars".readiness-probe.tcp-socket-action
The tcp socket to use for the probe (the format is host:port).
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__READINESS_PROBE_TCP_SOCKET_ACTION
|
string |
|
quarkus.openshift.sidecars."sidecars".readiness-probe.grpc-action
The gRPC port to use for the probe (the format is either port or port:service).
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__READINESS_PROBE_GRPC_ACTION
|
string |
|
quarkus.openshift.sidecars."sidecars".readiness-probe.grpc-action-enabled
If enabled and grpc-action is not provided, it will use the generated service name and the gRPC port.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__READINESS_PROBE_GRPC_ACTION_ENABLED
|
boolean |
false
|
quarkus.openshift.sidecars."sidecars".readiness-probe.initial-delay
The amount of time to wait before starting to probe.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__READINESS_PROBE_INITIAL_DELAY
|
Duration |
5S
|
quarkus.openshift.sidecars."sidecars".readiness-probe.period
The period in which the action should be called.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__READINESS_PROBE_PERIOD
|
Duration |
10S
|
quarkus.openshift.sidecars."sidecars".readiness-probe.timeout
The amount of time to wait for each action.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__READINESS_PROBE_TIMEOUT
|
Duration |
10S
|
quarkus.openshift.sidecars."sidecars".readiness-probe.success-threshold
The success threshold to use.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__READINESS_PROBE_SUCCESS_THRESHOLD
|
int |
1
|
quarkus.openshift.sidecars."sidecars".readiness-probe.failure-threshold
The failure threshold to use.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__READINESS_PROBE_FAILURE_THRESHOLD
|
int |
3
|
quarkus.openshift.sidecars."sidecars".mounts."mounts".name
The name of the volumeName to mount.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__MOUNTS__MOUNTS__NAME
|
string |
|
quarkus.openshift.sidecars."sidecars".mounts."mounts".path
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__MOUNTS__MOUNTS__PATH
|
string |
|
quarkus.openshift.sidecars."sidecars".mounts."mounts".sub-path
Path within the volumeName from which the container’s volumeName should be mounted.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__MOUNTS__MOUNTS__SUB_PATH
|
string |
|
quarkus.openshift.sidecars."sidecars".mounts."mounts".read-only
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__MOUNTS__MOUNTS__READ_ONLY
|
boolean |
false
|
quarkus.openshift.sidecars."sidecars".resources.limits.cpu
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__RESOURCES_LIMITS_CPU
|
string |
|
quarkus.openshift.sidecars."sidecars".resources.limits.memory
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__RESOURCES_LIMITS_MEMORY
|
string |
|
quarkus.openshift.sidecars."sidecars".resources.requests.cpu
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__RESOURCES_REQUESTS_CPU
|
string |
|
quarkus.openshift.sidecars."sidecars".resources.requests.memory
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__RESOURCES_REQUESTS_MEMORY
|
string |
|
quarkus.openshift.sidecars."sidecars".env.secrets
The optional list of Secret names to load environment variables from.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__ENV_SECRETS
|
list of string |
|
quarkus.openshift.sidecars."sidecars".env.configmaps
The optional list of ConfigMap names to load environment variables from.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__ENV_CONFIGMAPS
|
list of string |
|
quarkus.openshift.sidecars."sidecars".env.fields."environment-variable-name"
The map associating environment variable names to their associated field references they take their value from.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__ENV_FIELDS__ENVIRONMENT_VARIABLE_NAME_
|
Map<String,String> |
|
quarkus.openshift.sidecars."sidecars".env.vars."vars"
The map associating environment name to its associated value.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__ENV_VARS__VARS_
|
Map<String,Optional<String>> |
|
quarkus.openshift.sidecars."sidecars".env.mapping."mapping".from-secret
The optional name of the Secret from which a value is to be extracted. Mutually exclusive with from-configmap .
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__ENV_MAPPING__MAPPING__FROM_SECRET
|
string |
|
quarkus.openshift.sidecars."sidecars".env.mapping."mapping".from-configmap
The optional name of the ConfigMap from which a value is to be extracted. Mutually exclusive with from-secret .
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__ENV_MAPPING__MAPPING__FROM_CONFIGMAP
|
string |
|
quarkus.openshift.sidecars."sidecars".env.mapping."mapping".with-key
The key identifying the field from which the value is extracted.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__ENV_MAPPING__MAPPING__WITH_KEY
|
string |
required |
quarkus.openshift.sidecars."sidecars".env.using-prefix."prefixes".for-secret
The optional prefix to use when adding the environment variable to the container.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__ENV_USING_PREFIX__PREFIXES__FOR_SECRET
|
string |
|
quarkus.openshift.sidecars."sidecars".env.using-prefix."prefixes".for-configmap
The optional prefix to use when adding the environment variable to the container.
Environment variable: QUARKUS_OPENSHIFT_SIDECARS__SIDECARS__ENV_USING_PREFIX__PREFIXES__FOR_CONFIGMAP
|
string |
|
quarkus.openshift.host-aliases."host-aliases".ip
Environment variable: QUARKUS_OPENSHIFT_HOST_ALIASES__HOST_ALIASES__IP
|
string |
|
quarkus.openshift.host-aliases."host-aliases".hostnames
The hostnames to resolve to the ip
Environment variable: QUARKUS_OPENSHIFT_HOST_ALIASES__HOST_ALIASES__HOSTNAMES
|
list of string |
|
quarkus.openshift.resources.limits.cpu
Environment variable: QUARKUS_OPENSHIFT_RESOURCES_LIMITS_CPU
|
string |
|
quarkus.openshift.resources.limits.memory
Environment variable: QUARKUS_OPENSHIFT_RESOURCES_LIMITS_MEMORY
|
string |
|
quarkus.openshift.resources.requests.cpu
Environment variable: QUARKUS_OPENSHIFT_RESOURCES_REQUESTS_CPU
|
string |
|
quarkus.openshift.resources.requests.memory
Environment variable: QUARKUS_OPENSHIFT_RESOURCES_REQUESTS_MEMORY
|
string |
|
quarkus.openshift.container-name
If set, it will change the name of the container according to the configuration
Environment variable: QUARKUS_OPENSHIFT_CONTAINER_NAME
|
string |
|
quarkus.openshift.route.expose
If true, the service will be exposed
Environment variable: QUARKUS_OPENSHIFT_ROUTE_EXPOSE
|
boolean |
false
|
quarkus.openshift.route.host
The host under which the application is going to be exposed
Environment variable: QUARKUS_OPENSHIFT_ROUTE_HOST
|
string |
|
quarkus.openshift.route.target-port
The target named port. If not provided, it will be deducted from the Service resource ports. Options are: "http" and "https".
Environment variable: QUARKUS_OPENSHIFT_ROUTE_TARGET_PORT
|
string |
http
|
quarkus.openshift.route.annotations."annotation-name"
Custom annotations to add to exposition (route or ingress) resources
Environment variable: QUARKUS_OPENSHIFT_ROUTE_ANNOTATIONS__ANNOTATION_NAME_
|
Map<String,String> |
|
quarkus.openshift.route.labels."label-name"
Custom labels to add to exposition (route or ingress) resources
Environment variable: QUARKUS_OPENSHIFT_ROUTE_LABELS__LABEL_NAME_
|
Map<String,String> |
|
quarkus.openshift.route.tls.ca-certificate
The cert authority certificate contents.
Environment variable: QUARKUS_OPENSHIFT_ROUTE_TLS_CA_CERTIFICATE
|
string |
|
quarkus.openshift.route.tls.certificate
The certificate contents.
Environment variable: QUARKUS_OPENSHIFT_ROUTE_TLS_CERTIFICATE
|
string |
|
quarkus.openshift.route.tls.destination-ca-certificate
The contents of the ca certificate of the final destination.
Environment variable: QUARKUS_OPENSHIFT_ROUTE_TLS_DESTINATION_CA_CERTIFICATE
|
string |
|
quarkus.openshift.route.tls.insecure-edge-termination-policy
The desired behavior for insecure connections to a route.
Environment variable: QUARKUS_OPENSHIFT_ROUTE_TLS_INSECURE_EDGE_TERMINATION_POLICY
|
string |
|
quarkus.openshift.route.tls.key
Environment variable: QUARKUS_OPENSHIFT_ROUTE_TLS_KEY
|
string |
|
quarkus.openshift.route.tls.termination
Environment variable: QUARKUS_OPENSHIFT_ROUTE_TLS_TERMINATION
|
string |
|
quarkus.openshift.add-version-to-label-selectors
If true, the 'app.kubernetes.io/version' label will be part of the selectors of Service and DeploymentConfig
Environment variable: QUARKUS_OPENSHIFT_ADD_VERSION_TO_LABEL_SELECTORS
|
boolean |
true
|
quarkus.openshift.add-name-to-label-selectors
If true, the 'app.kubernetes.io/name' label will be part of the selectors of Service and Deployment
Environment variable: QUARKUS_OPENSHIFT_ADD_NAME_TO_LABEL_SELECTORS
|
boolean |
true
|
quarkus.openshift.job.parallelism
Specifies the maximum desired number of pods the job should run at any given time.
Environment variable: QUARKUS_OPENSHIFT_JOB_PARALLELISM
|
int |
|
quarkus.openshift.job.completions
Specifies the desired number of successfully finished pods the job should be run with.
Environment variable: QUARKUS_OPENSHIFT_JOB_COMPLETIONS
|
int |
|
quarkus.openshift.job.completion-mode
CompletionMode specifies how Pod completions are tracked.
Environment variable: QUARKUS_OPENSHIFT_JOB_COMPLETION_MODE
|
|
non-indexed
|
quarkus.openshift.job.backoff-limit
Specifies the number of retries before marking this job failed.
Environment variable: QUARKUS_OPENSHIFT_JOB_BACKOFF_LIMIT
|
int |
|
quarkus.openshift.job.active-deadline-seconds
Specifies the duration in seconds relative to the startTime that the job may be continuously active before the system tries to terminate it; value must be positive integer.
Environment variable: QUARKUS_OPENSHIFT_JOB_ACTIVE_DEADLINE_SECONDS
|
long |
|
quarkus.openshift.job.ttl-seconds-after-finished
Limits the lifetime of a Job that has finished execution (either Complete or Failed). If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted.
Environment variable: QUARKUS_OPENSHIFT_JOB_TTL_SECONDS_AFTER_FINISHED
|
int |
|
quarkus.openshift.job.suspend
Suspend specifies whether the Job controller should create Pods or not.
Environment variable: QUARKUS_OPENSHIFT_JOB_SUSPEND
|
boolean |
false
|
quarkus.openshift.job.restart-policy
Restart policy when the job container fails.
Environment variable: QUARKUS_OPENSHIFT_JOB_RESTART_POLICY
|
|
on-failure
|
quarkus.openshift.cron-job.schedule
Environment variable: QUARKUS_OPENSHIFT_CRON_JOB_SCHEDULE
|
string |
|
quarkus.openshift.cron-job.concurrency-policy
ConcurrencyPolicy describes how the job will be handled.
Environment variable: QUARKUS_OPENSHIFT_CRON_JOB_CONCURRENCY_POLICY
|
|
allow
|
quarkus.openshift.cron-job.starting-deadline-seconds
Deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.
Environment variable: QUARKUS_OPENSHIFT_CRON_JOB_STARTING_DEADLINE_SECONDS
|
long |
|
quarkus.openshift.cron-job.failed-jobs-history-limit
The number of failed finished jobs to retain. The default value is 1.
Environment variable: QUARKUS_OPENSHIFT_CRON_JOB_FAILED_JOBS_HISTORY_LIMIT
|
int |
|
quarkus.openshift.cron-job.successful-jobs-history-limit
The number of successful finished jobs to retain. The default value is 3.
Environment variable: QUARKUS_OPENSHIFT_CRON_JOB_SUCCESSFUL_JOBS_HISTORY_LIMIT
|
int |
|
quarkus.openshift.cron-job.parallelism
Specifies the maximum desired number of pods the job should run at any given time.
Environment variable: QUARKUS_OPENSHIFT_CRON_JOB_PARALLELISM
|
int |
|
quarkus.openshift.cron-job.completions
Specifies the desired number of successfully finished pods the job should be run with.
Environment variable: QUARKUS_OPENSHIFT_CRON_JOB_COMPLETIONS
|
int |
|
quarkus.openshift.cron-job.completion-mode
CompletionMode specifies how Pod completions are tracked.
Environment variable: QUARKUS_OPENSHIFT_CRON_JOB_COMPLETION_MODE
|
|
non-indexed
|
quarkus.openshift.cron-job.backoff-limit
Specifies the number of retries before marking this job failed.
Environment variable: QUARKUS_OPENSHIFT_CRON_JOB_BACKOFF_LIMIT
|
int |
|
quarkus.openshift.cron-job.active-deadline-seconds
Specifies the duration in seconds relative to the startTime that the job may be continuously active before the system tries to terminate it; value must be positive integer.
Environment variable: QUARKUS_OPENSHIFT_CRON_JOB_ACTIVE_DEADLINE_SECONDS
|
long |
|
quarkus.openshift.cron-job.ttl-seconds-after-finished
Limits the lifetime of a Job that has finished execution (either Complete or Failed). If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted.
Environment variable: QUARKUS_OPENSHIFT_CRON_JOB_TTL_SECONDS_AFTER_FINISHED
|
int |
|
quarkus.openshift.cron-job.suspend
Suspend specifies whether the Job controller should create Pods or not.
Environment variable: QUARKUS_OPENSHIFT_CRON_JOB_SUSPEND
|
boolean |
false
|
quarkus.openshift.cron-job.restart-policy
Restart policy when the job container fails.
Environment variable: QUARKUS_OPENSHIFT_CRON_JOB_RESTART_POLICY
|
|
on-failure
|
quarkus.openshift.rbac.roles."roles".name
Environment variable: QUARKUS_OPENSHIFT_RBAC_ROLES__ROLES__NAME
|
string |
|
quarkus.openshift.rbac.roles."roles".namespace
The namespace of the role.
Environment variable: QUARKUS_OPENSHIFT_RBAC_ROLES__ROLES__NAMESPACE
|
string |
|
quarkus.openshift.rbac.roles."roles".labels."label-name"
Labels to add into the Role resource.
Environment variable: QUARKUS_OPENSHIFT_RBAC_ROLES__ROLES__LABELS__LABEL_NAME_
|
Map<String,String> |
|
quarkus.openshift.rbac.roles."roles".policy-rules."policy-rules".api-groups
API groups of the policy rule.
Environment variable: QUARKUS_OPENSHIFT_RBAC_ROLES__ROLES__POLICY_RULES__POLICY_RULES__API_GROUPS
|
list of string |
|
quarkus.openshift.rbac.roles."roles".policy-rules."policy-rules".non-resource-urls
Non resource URLs of the policy rule.
Environment variable: QUARKUS_OPENSHIFT_RBAC_ROLES__ROLES__POLICY_RULES__POLICY_RULES__NON_RESOURCE_URLS
|
list of string |
|
quarkus.openshift.rbac.roles."roles".policy-rules."policy-rules".resource-names
Resource names of the policy rule.
Environment variable: QUARKUS_OPENSHIFT_RBAC_ROLES__ROLES__POLICY_RULES__POLICY_RULES__RESOURCE_NAMES
|
list of string |
|
quarkus.openshift.rbac.roles."roles".policy-rules."policy-rules".resources
Resources of the policy rule.
Environment variable: QUARKUS_OPENSHIFT_RBAC_ROLES__ROLES__POLICY_RULES__POLICY_RULES__RESOURCES
|
list of string |
|
quarkus.openshift.rbac.roles."roles".policy-rules."policy-rules".verbs
Verbs of the policy rule.
Environment variable: QUARKUS_OPENSHIFT_RBAC_ROLES__ROLES__POLICY_RULES__POLICY_RULES__VERBS
|
list of string |
|
quarkus.openshift.rbac.cluster-roles."cluster-roles".name
The name of the cluster role.
Environment variable: QUARKUS_OPENSHIFT_RBAC_CLUSTER_ROLES__CLUSTER_ROLES__NAME
|
string |
|
quarkus.openshift.rbac.cluster-roles."cluster-roles".labels."label-name"
Labels to add into the ClusterRole resource.
Environment variable: QUARKUS_OPENSHIFT_RBAC_CLUSTER_ROLES__CLUSTER_ROLES__LABELS__LABEL_NAME_
|
Map<String,String> |
|
quarkus.openshift.rbac.cluster-roles."cluster-roles".policy-rules."policy-rules".api-groups
API groups of the policy rule.
Environment variable: QUARKUS_OPENSHIFT_RBAC_CLUSTER_ROLES__CLUSTER_ROLES__POLICY_RULES__POLICY_RULES__API_GROUPS
|
list of string |
|
quarkus.openshift.rbac.cluster-roles."cluster-roles".policy-rules."policy-rules".non-resource-urls
Non resource URLs of the policy rule.
Environment variable: QUARKUS_OPENSHIFT_RBAC_CLUSTER_ROLES__CLUSTER_ROLES__POLICY_RULES__POLICY_RULES__NON_RESOURCE_URLS
|
list of string |
|
quarkus.openshift.rbac.cluster-roles."cluster-roles".policy-rules."policy-rules".resource-names
Resource names of the policy rule.
Environment variable: QUARKUS_OPENSHIFT_RBAC_CLUSTER_ROLES__CLUSTER_ROLES__POLICY_RULES__POLICY_RULES__RESOURCE_NAMES
|
list of string |
|
quarkus.openshift.rbac.cluster-roles."cluster-roles".policy-rules."policy-rules".resources
Resources of the policy rule.
Environment variable: QUARKUS_OPENSHIFT_RBAC_CLUSTER_ROLES__CLUSTER_ROLES__POLICY_RULES__POLICY_RULES__RESOURCES
|
list of string |
|
quarkus.openshift.rbac.cluster-roles."cluster-roles".policy-rules."policy-rules".verbs
Verbs of the policy rule.
Environment variable: QUARKUS_OPENSHIFT_RBAC_CLUSTER_ROLES__CLUSTER_ROLES__POLICY_RULES__POLICY_RULES__VERBS
|
list of string |
|
quarkus.openshift.rbac.service-accounts."service-accounts".name
The name of the service account.
Environment variable: QUARKUS_OPENSHIFT_RBAC_SERVICE_ACCOUNTS__SERVICE_ACCOUNTS__NAME
|
string |
|
quarkus.openshift.rbac.service-accounts."service-accounts".namespace
The namespace of the service account.
Environment variable: QUARKUS_OPENSHIFT_RBAC_SERVICE_ACCOUNTS__SERVICE_ACCOUNTS__NAMESPACE
|
string |
|
quarkus.openshift.rbac.service-accounts."service-accounts".labels."label-name"
Labels of the service account.
Environment variable: QUARKUS_OPENSHIFT_RBAC_SERVICE_ACCOUNTS__SERVICE_ACCOUNTS__LABELS__LABEL_NAME_
|
Map<String,String> |
|
quarkus.openshift.rbac.service-accounts."service-accounts".use-as-default
If true, this service account will be used in the generated Deployment resource.
Environment variable: QUARKUS_OPENSHIFT_RBAC_SERVICE_ACCOUNTS__SERVICE_ACCOUNTS__USE_AS_DEFAULT
|
boolean |
|
quarkus.openshift.rbac.role-bindings."role-bindings".name
Name of the RoleBinding resource to be generated. If not provided, it will use the application name plus the role ref name.
Environment variable: QUARKUS_OPENSHIFT_RBAC_ROLE_BINDINGS__ROLE_BINDINGS__NAME
|
string |
|
quarkus.openshift.rbac.role-bindings."role-bindings".labels."label-name"
Labels to add into the RoleBinding resource.
Environment variable: QUARKUS_OPENSHIFT_RBAC_ROLE_BINDINGS__ROLE_BINDINGS__LABELS__LABEL_NAME_
|
Map<String,String> |
|
quarkus.openshift.rbac.role-bindings."role-bindings".role-name
The name of the Role resource to use by the RoleRef element in the generated Role Binding resource. By default, it’s "view" role name.
Environment variable: QUARKUS_OPENSHIFT_RBAC_ROLE_BINDINGS__ROLE_BINDINGS__ROLE_NAME
|
string |
|
quarkus.openshift.rbac.role-bindings."role-bindings".cluster-wide
If the Role sets in the role-name property is cluster wide or not.
Environment variable: QUARKUS_OPENSHIFT_RBAC_ROLE_BINDINGS__ROLE_BINDINGS__CLUSTER_WIDE
|
boolean |
|
quarkus.openshift.rbac.role-bindings."role-bindings".subjects."subjects".name
The "name" resource to use by the Subject element in the generated Role Binding resource.
Environment variable: QUARKUS_OPENSHIFT_RBAC_ROLE_BINDINGS__ROLE_BINDINGS__SUBJECTS__SUBJECTS__NAME
|
string |
|
quarkus.openshift.rbac.role-bindings."role-bindings".subjects."subjects".kind
The "kind" resource to use by the Subject element in the generated Role Binding resource. By default, it uses the "ServiceAccount" kind.
Environment variable: QUARKUS_OPENSHIFT_RBAC_ROLE_BINDINGS__ROLE_BINDINGS__SUBJECTS__SUBJECTS__KIND
|
string |
ServiceAccount
|
quarkus.openshift.rbac.role-bindings."role-bindings".subjects."subjects".api-group
The "apiGroup" resource that matches with the "kind" property. By default, it’s empty.
Environment variable: QUARKUS_OPENSHIFT_RBAC_ROLE_BINDINGS__ROLE_BINDINGS__SUBJECTS__SUBJECTS__API_GROUP
|
string |
|
quarkus.openshift.rbac.role-bindings."role-bindings".subjects."subjects".namespace
The "namespace" resource to use by the Subject element in the generated Role Binding resource. By default, it will use the same as provided in the generated resources.
Environment variable: QUARKUS_OPENSHIFT_RBAC_ROLE_BINDINGS__ROLE_BINDINGS__SUBJECTS__SUBJECTS__NAMESPACE
|
string |
|
quarkus.openshift.rbac.cluster-role-bindings."cluster-role-bindings".name
Name of the ClusterRoleBinding resource to be generated. If not provided, it will use the application name plus the role ref name.
Environment variable: QUARKUS_OPENSHIFT_RBAC_CLUSTER_ROLE_BINDINGS__CLUSTER_ROLE_BINDINGS__NAME
|
string |
|
quarkus.openshift.rbac.cluster-role-bindings."cluster-role-bindings".labels."label-name"
Labels to add into the RoleBinding resource.
Environment variable: QUARKUS_OPENSHIFT_RBAC_CLUSTER_ROLE_BINDINGS__CLUSTER_ROLE_BINDINGS__LABELS__LABEL_NAME_
|
Map<String,String> |
|
quarkus.openshift.rbac.cluster-role-bindings."cluster-role-bindings".role-name
The name of the ClusterRole resource to use by the RoleRef element in the generated ClusterRoleBinding resource.
Environment variable: QUARKUS_OPENSHIFT_RBAC_CLUSTER_ROLE_BINDINGS__CLUSTER_ROLE_BINDINGS__ROLE_NAME
|
string |
required |
quarkus.openshift.rbac.cluster-role-bindings."cluster-role-bindings".subjects."subjects".name
The "name" resource to use by the Subject element in the generated Role Binding resource.
Environment variable: QUARKUS_OPENSHIFT_RBAC_CLUSTER_ROLE_BINDINGS__CLUSTER_ROLE_BINDINGS__SUBJECTS__SUBJECTS__NAME
|
string |
|
quarkus.openshift.rbac.cluster-role-bindings."cluster-role-bindings".subjects."subjects".kind
The "kind" resource to use by the Subject element in the generated Role Binding resource. By default, it uses the "ServiceAccount" kind.
Environment variable: QUARKUS_OPENSHIFT_RBAC_CLUSTER_ROLE_BINDINGS__CLUSTER_ROLE_BINDINGS__SUBJECTS__SUBJECTS__KIND
|
string |
ServiceAccount
|
quarkus.openshift.rbac.cluster-role-bindings."cluster-role-bindings".subjects."subjects".api-group
The "apiGroup" resource that matches with the "kind" property. By default, it’s empty.
Environment variable: QUARKUS_OPENSHIFT_RBAC_CLUSTER_ROLE_BINDINGS__CLUSTER_ROLE_BINDINGS__SUBJECTS__SUBJECTS__API_GROUP
|
string |
|
quarkus.openshift.rbac.cluster-role-bindings."cluster-role-bindings".subjects."subjects".namespace
The "namespace" resource to use by the Subject element in the generated Role Binding resource. By default, it will use the same as provided in the generated resources.
Environment variable: QUARKUS_OPENSHIFT_RBAC_CLUSTER_ROLE_BINDINGS__CLUSTER_ROLE_BINDINGS__SUBJECTS__SUBJECTS__NAMESPACE
|
string |
|
quarkus.openshift.env.secrets
The optional list of Secret names to load environment variables from.
Environment variable: QUARKUS_OPENSHIFT_ENV_SECRETS
|
list of string |
|
quarkus.openshift.env.configmaps
The optional list of ConfigMap names to load environment variables from.
Environment variable: QUARKUS_OPENSHIFT_ENV_CONFIGMAPS
|
list of string |
|
quarkus.openshift.env.fields."environment-variable-name"
The map associating environment variable names to their associated field references they take their value from.
Environment variable: QUARKUS_OPENSHIFT_ENV_FIELDS__ENVIRONMENT_VARIABLE_NAME_
|
Map<String,String> |
|
quarkus.openshift.env.vars."vars"
The map associating environment name to its associated value.
Environment variable: QUARKUS_OPENSHIFT_ENV_VARS__VARS_
|
Map<String,Optional<String>> |
|
quarkus.openshift.env.mapping."mapping".from-secret
The optional name of the Secret from which a value is to be extracted. Mutually exclusive with from-configmap .
Environment variable: QUARKUS_OPENSHIFT_ENV_MAPPING__MAPPING__FROM_SECRET
|
string |
|
quarkus.openshift.env.mapping."mapping".from-configmap
The optional name of the ConfigMap from which a value is to be extracted. Mutually exclusive with from-secret .
Environment variable: QUARKUS_OPENSHIFT_ENV_MAPPING__MAPPING__FROM_CONFIGMAP
|
string |
|
quarkus.openshift.env.mapping."mapping".with-key
The key identifying the field from which the value is extracted.
Environment variable: QUARKUS_OPENSHIFT_ENV_MAPPING__MAPPING__WITH_KEY
|
string |
required |
quarkus.openshift.env.using-prefix."prefixes".for-secret
The optional prefix to use when adding the environment variable to the container.
Environment variable: QUARKUS_OPENSHIFT_ENV_USING_PREFIX__PREFIXES__FOR_SECRET
|
string |
|
quarkus.openshift.env.using-prefix."prefixes".for-configmap
The optional prefix to use when adding the environment variable to the container.
Environment variable: QUARKUS_OPENSHIFT_ENV_USING_PREFIX__PREFIXES__FOR_CONFIGMAP
|
string |
|
quarkus.openshift.app-secret
If set, the secret will mounted to the application container and its contents will be used for application configuration.
Environment variable: QUARKUS_OPENSHIFT_APP_SECRET
|
string |
|
quarkus.openshift.app-config-map
If set, the config amp will be mounted to the application container and its contents will be used for application configuration.
Environment variable: QUARKUS_OPENSHIFT_APP_CONFIG_MAP
|
string |
|
quarkus.openshift.security-context.se-linux-options.level
The SELinux level label that applies to the container.
Environment variable: QUARKUS_OPENSHIFT_SECURITY_CONTEXT_SE_LINUX_OPTIONS_LEVEL
|
string |
|
quarkus.openshift.security-context.se-linux-options.role
The SELinux role label that applies to the container.
Environment variable: QUARKUS_OPENSHIFT_SECURITY_CONTEXT_SE_LINUX_OPTIONS_ROLE
|
string |
|
quarkus.openshift.security-context.se-linux-options.type
The SELinux type label that applies to the container.
Environment variable: QUARKUS_OPENSHIFT_SECURITY_CONTEXT_SE_LINUX_OPTIONS_TYPE
|
string |
|
quarkus.openshift.security-context.se-linux-options.user
The SELinux user label that applies to the container.
Environment variable: QUARKUS_OPENSHIFT_SECURITY_CONTEXT_SE_LINUX_OPTIONS_USER
|
string |
|
quarkus.openshift.security-context.windows-options.gmsa-credential-spec-name
The name of the GMSA credential spec to use.
Environment variable: QUARKUS_OPENSHIFT_SECURITY_CONTEXT_WINDOWS_OPTIONS_GMSA_CREDENTIAL_SPEC_NAME
|
string |
|
quarkus.openshift.security-context.windows-options.gmsa-credential-spec
Environment variable: QUARKUS_OPENSHIFT_SECURITY_CONTEXT_WINDOWS_OPTIONS_GMSA_CREDENTIAL_SPEC
|
string |
|
quarkus.openshift.security-context.windows-options.run-as-user-name
The UserName in Windows to run the entrypoint of the container process.
Environment variable: QUARKUS_OPENSHIFT_SECURITY_CONTEXT_WINDOWS_OPTIONS_RUN_AS_USER_NAME
|
string |
|
quarkus.openshift.security-context.windows-options.host-process
HostProcess determines if a container should be run as a 'Host Process' container.
Environment variable: QUARKUS_OPENSHIFT_SECURITY_CONTEXT_WINDOWS_OPTIONS_HOST_PROCESS
|
boolean |
|
quarkus.openshift.security-context.run-as-user
The UID to run the entrypoint of the container process.
Environment variable: QUARKUS_OPENSHIFT_SECURITY_CONTEXT_RUN_AS_USER
|
long |
|
quarkus.openshift.security-context.run-as-group
The GID to run the entrypoint of the container process.
Environment variable: QUARKUS_OPENSHIFT_SECURITY_CONTEXT_RUN_AS_GROUP
|
long |
|
quarkus.openshift.security-context.run-as-non-root
Indicates that the container must run as a non-root user.
Environment variable: QUARKUS_OPENSHIFT_SECURITY_CONTEXT_RUN_AS_NON_ROOT
|
boolean |
|
quarkus.openshift.security-context.supplemental-groups
A list of groups applied to the first process run in each container, in addition to the container’s primary GID. If unspecified, no groups will be added to any container.
Environment variable: QUARKUS_OPENSHIFT_SECURITY_CONTEXT_SUPPLEMENTAL_GROUPS
|
list of long |
|
quarkus.openshift.security-context.fs-group
A special supplemental group that applies to all containers in a pod.
Environment variable: QUARKUS_OPENSHIFT_SECURITY_CONTEXT_FS_GROUP
|
long |
|
quarkus.openshift.security-context.sysctls."sysctl-name"
Sysctls hold a list of namespaced sysctls used for the pod.
Environment variable: QUARKUS_OPENSHIFT_SECURITY_CONTEXT_SYSCTLS__SYSCTL_NAME_
|
Map<String,String> |
|
quarkus.openshift.security-context.fs-group-change-policy
It holds policies that will be used for applying fsGroup to a volume when volume is mounted. Values: OnRootMismatch, Always
Environment variable: QUARKUS_OPENSHIFT_SECURITY_CONTEXT_FS_GROUP_CHANGE_POLICY
|
|
|
quarkus.openshift.remote-debug.enabled
If true, the debug mode in pods will be enabled.
Environment variable: QUARKUS_OPENSHIFT_REMOTE_DEBUG_ENABLED
|
boolean |
false
|
quarkus.openshift.remote-debug.transport
Environment variable: QUARKUS_OPENSHIFT_REMOTE_DEBUG_TRANSPORT
|
string |
dt_socket
|
quarkus.openshift.remote-debug.suspend
If enabled, it means the JVM will wait for the debugger to attach before executing the main class. If false, the JVM will immediately execute the main class, while listening for the debugger connection.
Environment variable: QUARKUS_OPENSHIFT_REMOTE_DEBUG_SUSPEND
|
string |
n
|
quarkus.openshift.remote-debug.address-port
It specifies the address at which the debug socket will listen.
Environment variable: QUARKUS_OPENSHIFT_REMOTE_DEBUG_ADDRESS_PORT
|
int |
5005
|
If set to true, Quarkus will attempt to deploy the application to the target Openshift cluster
Environment variable: QUARKUS_OPENSHIFT_DEPLOY
|
boolean |
false
|
quarkus.openshift.deploy-strategy
If deploy is enabled, it will follow this strategy to update the resources to the target OpenShift cluster.
Environment variable: QUARKUS_OPENSHIFT_DEPLOY_STRATEGY
|
create-or-update , create , replace , server-side-apply
|
create-or-update
|
quarkus.openshift.init-tasks."init-tasks".enabled
If true, the init task will be generated. Otherwise, the init task resource generation will be skipped.
Environment variable: QUARKUS_OPENSHIFT_INIT_TASKS__INIT_TASKS__ENABLED
|
boolean |
true
|
quarkus.openshift.init-tasks."init-tasks".wait-for-container.image
The init task image to use by the init-container.
Environment variable: QUARKUS_OPENSHIFT_INIT_TASKS__INIT_TASKS__WAIT_FOR_CONTAINER_IMAGE
|
string |
groundnuty/k8s-wait-for:no-root-v1.7
|
quarkus.openshift.init-task-defaults.enabled
If true, the init task will be generated. Otherwise, the init task resource generation will be skipped.
Environment variable: QUARKUS_OPENSHIFT_INIT_TASK_DEFAULTS_ENABLED
|
boolean |
true
|
quarkus.openshift.init-task-defaults.wait-for-container.image
The init task image to use by the init-container.
Environment variable: QUARKUS_OPENSHIFT_INIT_TASK_DEFAULTS_WAIT_FOR_CONTAINER_IMAGE
|
string |
groundnuty/k8s-wait-for:no-root-v1.7
|
quarkus.openshift.idempotent
Switch used to control whether non-idempotent fields are included in generated kubernetes resources to improve git-ops compatibility
Environment variable: QUARKUS_OPENSHIFT_IDEMPOTENT
|
boolean |
false
|
quarkus.openshift.vcs-uri.enabled
Whether the vcs-uri annotation should be added to the generated configuration.
Environment variable: QUARKUS_OPENSHIFT_VCS_URI_ENABLED
|
boolean |
true
|
quarkus.openshift.vcs-uri.override
Optional override of the vcs-uri annotation.
Environment variable: QUARKUS_OPENSHIFT_VCS_URI_OVERRIDE
|
string |
|