Files
k3s/pkg/deploy/nostage.go
Brad Davidson fcaeebaa18 Add support for disabling all staged content
This reduces the binary footprint for downstream users that won't use
these files anyway.

Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
2020-09-14 14:21:37 -07:00

8 lines
140 B
Go

// +build no_stage
package deploy
func Stage(dataDir string, templateVars map[string]string, skips map[string]bool) error {
return nil
}