| 39 | ) |
| 40 | |
| 41 | type RemoteClient struct { |
| 42 | kubernetesSecretClient dynamic.ResourceInterface |
| 43 | kubernetesLeaseClient coordinationclientv1.LeaseInterface |
| 44 | namespace string |
| 45 | labels map[string]string |
| 46 | nameSuffix string |
| 47 | workspace string |
| 48 | } |
| 49 | |
| 50 | func (c *RemoteClient) Get(ctx context.Context) (payload *remote.Payload, err error) { |
| 51 | secretName, err := c.createSecretName() |
nothing calls this directly
no outgoing calls
no test coverage detected