Skip to content

Commit

Permalink
fix command (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
maskarb authored Jan 17, 2025
1 parent 415c16d commit ea11c3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/bin/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def main() -> None:
]

for secret in ["koku-aws", "koku-gcp", "koku-oci"]:
cmd = f"oc get secret {secret} -o yaml -n ephemeral-base | grep -v '^\s*namespace:\s' | oc apply --namespace=${namespace} -f -"
cmd = f"oc get secret {secret} -o yaml -n ephemeral-base | grep -v '^\s*namespace:\s' | oc apply --namespace={namespace} -f -"
display(cmd)
subprocess.run(cmd, shell=True)

Expand Down

0 comments on commit ea11c3f

Please sign in to comment.