From ad30380846847652ee39e7a11fc7c28a2f7fc2bb Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Tue, 27 Sep 2022 20:18:15 +1000 Subject: [PATCH] Add read only option for volume mounted into kind cluster. --- client-programs/educates/pkg/config/installationconfig.go | 1 + 1 file changed, 1 insertion(+) diff --git a/client-programs/educates/pkg/config/installationconfig.go b/client-programs/educates/pkg/config/installationconfig.go index 67e7565d..425591ed 100644 --- a/client-programs/educates/pkg/config/installationconfig.go +++ b/client-programs/educates/pkg/config/installationconfig.go @@ -16,6 +16,7 @@ import ( type VolumeMountConfig struct { HostPath string `yaml:"hostPath"` ContainerPath string `yaml:"containerPath"` + ReadOnly bool `yaml:"readOnly,omitempty"` } type LocalKindClusterConfig struct {