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:
94
94
}
95
95
}
96
96
```
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 65
65
}
66
66
}
67
67
}
68
+ },
69
+ "credentialspec" : {
70
+ "id" : " https://opencontainers.org/schema/bundle/windows/credentialspec" ,
71
+ "type" : " object"
68
72
}
69
73
}
70
74
}
Original file line number Diff line number Diff line change @@ -432,6 +432,8 @@ type SolarisAnet struct {
432
432
type Windows struct {
433
433
// Resources contains information for handling resource constraints for the container.
434
434
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"`
435
437
}
436
438
437
439
// WindowsResources has container runtime resource constraints for containers running on Windows.
You can’t perform that action at this time.
0 commit comments