(ctx context.Context, name string, opts metav1.GetOptions)
| 67 | } |
| 68 | |
| 69 | func (w *WatchedSecrets) Get(ctx context.Context, name string, opts metav1.GetOptions) (*corev1.Secret, error) { |
| 70 | return w.inner.Get(ctx, name, opts) |
| 71 | } |
| 72 | |
| 73 | func (w *WatchedSecrets) List(ctx context.Context, opts metav1.ListOptions) (*corev1.SecretList, error) { |
| 74 | labelSelector, err := labels.Parse(opts.LabelSelector) |
no outgoing calls
no test coverage detected