(env e2e.Environment, name string, opts ...Option)
| 64 | } |
| 65 | |
| 66 | func NewParca(env e2e.Environment, name string, opts ...Option) *e2eprof.Parca { |
| 67 | o := options{} |
| 68 | for _, opt := range opts { |
| 69 | opt(&o) |
| 70 | } |
| 71 | |
| 72 | return e2eprof.NewParca(env, name, o.image, o.flagOverride) |
| 73 | } |
| 74 | |
| 75 | // NewMinio returns minio server, used as a local replacement for S3. |
| 76 | func NewMinio(env e2e.Environment, name, bktName string, opts ...Option) *e2emon.InstrumentedRunnable { |
nothing calls this directly
no test coverage detected
searching dependent graphs…