...

Source file src/github.com/openshift/api/machine/v1/common.go

Documentation: github.com/openshift/api/machine/v1

     1  package v1
     2  
     3  // InstanceTenancy indicates if instance should run on shared or single-tenant hardware.
     4  type InstanceTenancy string
     5  
     6  const (
     7  	// DefaultTenancy instance runs on shared hardware
     8  	DefaultTenancy InstanceTenancy = "default"
     9  	// DedicatedTenancy instance runs on single-tenant hardware
    10  	DedicatedTenancy InstanceTenancy = "dedicated"
    11  	// HostTenancy instance runs on a Dedicated Host, which is an isolated server with configurations that you can control.
    12  	HostTenancy InstanceTenancy = "host"
    13  )
    14  

View as plain text