diff --git a/runtime/local/local.go b/runtime/local/local.go index a122fcea..fd670a07 100644 --- a/runtime/local/local.go +++ b/runtime/local/local.go @@ -280,7 +280,7 @@ func (r *localRuntime) Create(s *runtime.Service, opts ...runtime.CreateOption) // pass secrets as env vars for key, value := range options.Secrets { - options.Env = append(options.Env, key, value) + options.Env = append(options.Env, fmt.Sprintf("%v=%v", key, value)) } if _, ok := r.namespaces[options.Namespace]; !ok {