From aab5363e65f6be324bb57ae9e0c1bc0464a94fa0 Mon Sep 17 00:00:00 2001 From: Peter Mills Date: Tue, 12 Sep 2023 20:34:25 +0100 Subject: [PATCH] Implement read only flag Signed-off-by: Peter Mills Signed-off-by: Alex Ellis (OpenFaaS Ltd) --- pkg/supervisor.go | 22 ++++++++++++++++++---- pkg/supervisor_test.go | 2 +- 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/pkg/supervisor.go b/pkg/supervisor.go index aceaad4d..2efc8f94 100644 --- a/pkg/supervisor.go +++ b/pkg/supervisor.go @@ -57,8 +57,14 @@ type ServicePort struct { } type Mount struct { - Src string + // Src relative to the working directory for faasd + Src string + + // Dest is the absolute path within the container Dest string + + // ReadOnly when set to true indicates the mount will be set to "ro" instead of "rw" + ReadOnly bool } type Supervisor struct { @@ -151,11 +157,18 @@ func (s *Supervisor) Start(svcs []Service) error { mounts := []specs.Mount{} if len(svc.Mounts) > 0 { for _, mnt := range svc.Mounts { + var options = []string{"rbind"} + if mnt.ReadOnly { + options = append(options, "ro") + } else { + options = append(options, "rw") + } + mounts = append(mounts, specs.Mount{ Source: mnt.Src, Destination: mnt.Dest, Type: "bind", - Options: []string{"rbind", "rw"}, + Options: options, }) // Only create directories, not files. @@ -342,8 +355,9 @@ func ParseCompose(config *compose.Config) ([]Service, error) { return nil, errors.Errorf("unsupported volume mount type '%s' when parsing service '%s'", v.Type, s.Name) } mounts = append(mounts, Mount{ - Src: v.Source, - Dest: v.Target, + Src: v.Source, + Dest: v.Target, + ReadOnly: v.ReadOnly, }) } diff --git a/pkg/supervisor_test.go b/pkg/supervisor_test.go index 43a77743..60b03a9e 100644 --- a/pkg/supervisor_test.go +++ b/pkg/supervisor_test.go @@ -180,7 +180,7 @@ func equalMountSlice(t *testing.T, want, found []Mount) { for i := range want { if !reflect.DeepEqual(want[i], found[i]) { - t.Fatalf("unexpected value at postition %d: want %s, got %s", i, want[i], found[i]) + t.Fatalf("unexpected value at postition %d: want %v, got %v", i, want[i], found[i]) } } }