File tree Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -94,3 +94,14 @@ The following parameters can be specified:
9494 }
9595 }
9696```
97+
98+ ## <a name =" configWindowsCredentialSpec " />Credential Spec
99+
100+ You can configure a container's group Managed Service Account (gMSA) via the OPTIONAL ` credentialspec ` field of the Windows configuration.
101+ The ` credentialspec ` is a JSON object whose properties are implementation-defined.
102+ For more information about gMSAs, see [ Active Directory Service Accounts for Windows Containers] [ gMSAOverview ] .
103+ For more information about tooling to generate a gMSA, see [ Deployment Overview] [ gMSATooling ] .
104+
105+
106+ [ gMSAOverview ] : https://aka.ms/windowscontainers/manage-serviceaccounts
107+ [ gMSATooling ] : https://aka.ms/windowscontainers/credentialspec-tools
Original file line number Diff line number Diff line change 6565 }
6666 }
6767 }
68+ },
69+ "credentialspec" : {
70+ "id" : " https://opencontainers.org/schema/bundle/windows/credentialspec" ,
71+ "type" : " object"
6872 }
6973 }
7074 }
Original file line number Diff line number Diff line change @@ -432,6 +432,8 @@ type SolarisAnet struct {
432432type Windows struct {
433433 // Resources contains information for handling resource constraints for the container.
434434 Resources * WindowsResources `json:"resources,omitempty"`
435+ // CredentialSpec contains a JSON object describing a group Managed Service Account (gMSA) specification.
436+ CredentialSpec interface {} `json:"credentialspec,omitempty"`
435437}
436438
437439// WindowsResources has container runtime resource constraints for containers running on Windows.
You can’t perform that action at this time.
0 commit comments