Package io.quarkus.kubernetes.deployment
Interface RouteConfig
public interface RouteConfig
-
Method Summary
Modifier and TypeMethodDescriptionCustom annotations to add to exposition (route or ingress) resourcesbooleanexpose()If true, the service will be exposedhost()The host under which the application is going to be exposedlabels()Custom labels to add to exposition (route or ingress) resourcesThe target named port.tls()The TLS configuration for the route.
-
Method Details
-
expose
@WithDefault("false") boolean expose()If true, the service will be exposed -
host
The host under which the application is going to be exposed -
targetPort
The target named port. If not provided, it will be deducted from the Service resource ports. Options are: "http" and "https". -
annotations
Custom annotations to add to exposition (route or ingress) resources -
labels
Custom labels to add to exposition (route or ingress) resources -
tls
TLSConfig tls()The TLS configuration for the route.
-