WithLabels specifies the labels to use for the stored activation info.
(labels map[string]string)
| 89 | |
| 90 | // WithLabels specifies the labels to use for the stored activation info. |
| 91 | func WithLabels(labels map[string]string) ActivateOpt { |
| 92 | return func(o *ActivateOptions) { |
| 93 | o.Labels = labels |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | // WithAllowMountType indicates the mount types that the peformer |
| 98 | // of the mounts will support. Even if there is a custom handler |