Ability to launch nomad job in read-only mode.
This commit is contained in:
parent
661658be9f
commit
69353377be
@ -42,6 +42,10 @@ func (d *Driver) createContainer(image containerd.Image, containerName, containe
|
||||
opts = append(opts, oci.WithPrivileged)
|
||||
}
|
||||
|
||||
if config.ReadOnlyRootfs {
|
||||
opts = append(opts, oci.WithRootFSReadonly())
|
||||
}
|
||||
|
||||
if len(config.CapAdd) > 0 {
|
||||
opts = append(opts, oci.WithAddedCapabilities(config.CapAdd))
|
||||
}
|
||||
|
@ -75,6 +75,7 @@ var (
|
||||
"cap_add": hclspec.NewAttr("cap_add", "list(string)", false),
|
||||
"cap_drop": hclspec.NewAttr("cap_drop", "list(string)", false),
|
||||
"privileged": hclspec.NewAttr("privileged", "bool", false),
|
||||
"readonly_rootfs": hclspec.NewAttr("readonly_rootfs", "bool", false),
|
||||
})
|
||||
|
||||
// capabilities indicates what optional features this driver supports
|
||||
@ -103,6 +104,7 @@ type TaskConfig struct {
|
||||
CapAdd []string `codec:"cap_add"`
|
||||
CapDrop []string `codec:"cap_drop"`
|
||||
Privileged bool `codec:"privileged"`
|
||||
ReadOnlyRootfs bool `codec:"readonly_rootfs"`
|
||||
}
|
||||
|
||||
// TaskState is the runtime state which is encoded in the handle returned to
|
||||
|
Loading…
x
Reference in New Issue
Block a user