(s *e2e.Scenario, src, dst string)
| 49 | } |
| 50 | |
| 51 | func copyFileToSharedDir(s *e2e.Scenario, src, dst string) error { |
| 52 | content, err := os.ReadFile(filepath.Join(getCortexProjectDir(), src)) |
| 53 | if err != nil { |
| 54 | return errors.Wrapf(err, "unable to read local file %s", src) |
| 55 | } |
| 56 | |
| 57 | return writeFileToSharedDir(s, dst, content) |
| 58 | } |
| 59 | |
| 60 | func getServerTLSFlags() map[string]string { |
| 61 | return map[string]string{ |