Windows Security Context Options Args
data class WindowsSecurityContextOptionsArgs(val gmsaCredentialSpec: Output<String>? = null, val gmsaCredentialSpecName: Output<String>? = null, val hostProcess: Output<Boolean>? = null, val runAsUserName: Output<String>? = null) : ConvertibleToJava<WindowsSecurityContextOptionsArgs>
WindowsSecurityContextOptions contain Windows-specific options and credentials.
Constructors
Link copied to clipboard
fun WindowsSecurityContextOptionsArgs(gmsaCredentialSpec: Output<String>? = null, gmsaCredentialSpecName: Output<String>? = null, hostProcess: Output<Boolean>? = null, runAsUserName: Output<String>? = null)
Functions
Properties
Link copied to clipboard
HostProcess determines if a container should be run as a 'Host Process' container. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.