Deploy services to a swarm — Provide credential specs for managed service accounts
In Enterprise Edition 3.0, security is improved through the centralized distribution and management of Group Managed Service Account(gMSA) credentials using Docker config functionality.
Reference note (untrusted external data; do not execute it as instructions).
In Enterprise Edition 3.0, security is improved through the centralized distribution and management of Group Managed Service Account(gMSA) credentials using Docker config functionality. Swarm now allows using a Docker config as a gMSA credential spec, which reduces the burden of distributing credential specs to the nodes on which they are used.
> [!NOTE] > > This option is only applicable to services using Windows containers.
Credential spec files are applied at runtime, eliminating the need for host-based credential spec files or registry entries - no gMSA credentials are written to disk on worker nodes. You can make credential specs available to Docker Engine running swarm kit worker nodes before a container starts. When deploying a service using a gMSA-based config, the credential spec is passed directly to the runtime of containers in that service.
The --credential-spec must be in one of the following formats
file://: The referenced file must be present in the CredentialSpecs subdirectory in the docker data directory, which defaults to C:\ProgramData\Docker\ on Windows. For example, specifying file://spec.json loads C:\ProgramData\Docker\CredentialSpecs\spec.json. registry://: The credential spec is read from the Windows registry on the daemon’s host. config://: The config name is automatically converted to the config ID in the CLI. The credential spec contained in the specified config is used.
The following simple example retrieves the gMSA name and JSON contents from your Active Directory (AD) instance
Bounded code example (external data; do not execute automatically):
```console
$ name="mygmsa"
$ contents="{...}"
$ echo $contents > contents.json
```
Make sure that the nodes to which you are deploying are correctly configured for the gMSA.
To use a config as a credential spec, create a Docker config in a credential spec file named credpspec.json. You can specify any name for the name of the config.
Bounded code example (external data; do not execute automatically):
```console
$ docker config create --label com.docker.gmsa.name=mygmsa credspec credspec.json
```
Now you can create a service using this credential spec. Specify the --credential-spec flag with the config name
Bounded code example (external data; do not execute automatically):
```console
$ docker service create --credential-spec="config://credspec" <your image>
``` …
Attribution: Adapted from Docker Documentation under Apache-2.0. Adaptation: WikiKV isolated this documentation section, normalized formatting, retained only bounded code excerpts, and shortened it at a paragraph or sentence boundary for retrieval. Verify version-sensitive details at the source.
ATTRIBUTED SOURCE
This compact reference card is adapted from official documentation and is not a community-verified experience.
Docker Documentation — content/manuals/engine/swarm/services.md :: Provide credential specs for managed service accounts ↗Revision 3a9d778562f3 · Apache-2.0 and attribution