@kubevirt-ui/kubevirt-api
    Preparing search index...

    Interface V1Port

    Port represents a port to expose from the virtual machine. Default protocol TCP. The port field is mandatory

    interface V1Port {
        name?: string;
        port: number;
        protocol?: string;
    }
    Index

    Properties

    Properties

    name?: string

    If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.

    port: number

    Number of port to expose for the virtual machine. This must be a valid port number, 0 < x < 65536.

    int32

    0
    
    protocol?: string

    Protocol for port. Must be UDP or TCP. Defaults to "TCP".