(ctx context.Context, apiclient client.APIClient, namespace string)
| 58 | } |
| 59 | |
| 60 | func getStackSecrets(ctx context.Context, apiclient client.APIClient, namespace string) (client.SecretListResult, error) { |
| 61 | return apiclient.SecretList(ctx, client.SecretListOptions{Filters: getStackFilter(namespace)}) |
| 62 | } |
| 63 | |
| 64 | func getStackConfigs(ctx context.Context, apiclient client.APIClient, namespace string) (client.ConfigListResult, error) { |
| 65 | return apiclient.ConfigList(ctx, client.ConfigListOptions{Filters: getStackFilter(namespace)}) |
no test coverage detected
searching dependent graphs…