Package io.quarkus.kubernetes.deployment
Class PortConfig
- java.lang.Object
-
- io.quarkus.kubernetes.deployment.PortConfig
-
public class PortConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) OptionalIntcontainerPortThe port number.(package private) OptionalInthostPortThe host port.(package private) Optional<String>pathThe application path (refers to web application path).(package private) io.dekorate.kubernetes.annotation.ProtocolprotocolThe protocol.
-
Constructor Summary
Constructors Constructor Description PortConfig()
-
-
-
Field Detail
-
containerPort
@ConfigItem OptionalInt containerPort
The port number. Refers to the container port.
-
hostPort
@ConfigItem OptionalInt hostPort
The host port.
-
path
@ConfigItem(defaultValue="/") Optional<String> path
The application path (refers to web application path).
-
protocol
@ConfigItem(defaultValue="TCP") io.dekorate.kubernetes.annotation.Protocol protocol
The protocol.
-
-