Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Commit

Permalink
Update capabilities/lib/zarf.ts
Browse files Browse the repository at this point in the history
Co-authored-by: razzle <[email protected]>
  • Loading branch information
lucasrod16 and Noxsios authored Dec 13, 2023
1 parent 4424308 commit faef6fc
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions capabilities/lib/zarf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,9 @@ export async function updateZarfManagedImageSecrets(
authToken: string,
): Promise<void> {
try {
const namespace = await K8s(kind.Namespace)
const namespaces = await K8s(kind.Namespace)
.WithLabel(managedByLabel, "zarf")
.Get();

const namespaces = namespace.items;
.Get().items;

for (const ns of namespaces) {
try {
Expand Down

0 comments on commit faef6fc

Please sign in to comment.