1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Set 0444 as default secret mode in stack deploy

Change the default secret mode to match the default one used in
`service` subcommands.

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2017-02-14 15:12:03 +01:00
parent 9042dbdb3b
commit f2b68c6cc1
No known key found for this signature in database
GPG key ID: 083CC6FD6EB699A3
2 changed files with 10 additions and 2 deletions

View file

@ -217,19 +217,27 @@ func convertServiceSecrets(
if gid == "" {
gid = "0"
}
mode := secret.Mode
if mode == nil {
mode = uint32Ptr(0444)
}
opts = append(opts, &types.SecretRequestOption{
Source: source,
Target: target,
UID: uid,
GID: gid,
Mode: os.FileMode(secret.Mode),
Mode: os.FileMode(*mode),
})
}
return servicecli.ParseSecrets(client, opts)
}
func uint32Ptr(value uint32) *uint32 {
return &value
}
func convertExtraHosts(extraHosts map[string]string) []string {
hosts := []string{}
for host, ip := range extraHosts {

View file

@ -229,7 +229,7 @@ type ServiceSecretConfig struct {
Target string
UID string
GID string
Mode uint32
Mode *uint32
}
// UlimitsConfig the ulimit configuration