diff --git a/components/smee-client/base/kustomization.yaml b/components/smee-client/base/kustomization.yaml index 19227eb8302..c8f898ece53 100644 --- a/components/smee-client/base/kustomization.yaml +++ b/components/smee-client/base/kustomization.yaml @@ -1,5 +1,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - - deployment.yaml - - rbac.yaml +- deployment.yaml +- rbac.yaml diff --git a/hack/kueue-vm-quotas/update-kueue-vm-quotas.py b/hack/kueue-vm-quotas/update-kueue-vm-quotas.py index 242099d5c63..1a2c42f8763 100755 --- a/hack/kueue-vm-quotas/update-kueue-vm-quotas.py +++ b/hack/kueue-vm-quotas/update-kueue-vm-quotas.py @@ -77,10 +77,9 @@ def extract_static_platform(key: str, value: str, data: Dict[str, Any]) -> Platf def extract_local_platforms(value: str, quota: int = 1000) -> List[PlatformQuota]: - """Extract platform quotas from local-platforms config entry.""" platforms = [] # Split by comma and clean up whitespace and empty strings - platform_names = [name.strip() for name in value.split(',') if name.strip()] + platform_names = [name.strip() for name in values.split(',') if name.strip()] for platform_name in platform_names: # Convert platform names like "linux/amd64" to "linux-amd64" diff --git a/hack/new-cluster/tasks/github/github-app-flow.py b/hack/new-cluster/tasks/github/github-app-flow.py index c25a064baba..8d5d904c733 100755 --- a/hack/new-cluster/tasks/github/github-app-flow.py +++ b/hack/new-cluster/tasks/github/github-app-flow.py @@ -118,7 +118,7 @@ def handle_redirect_from_github(self, code, state): if __name__ == "__main__": - port = 8089 + port_num = 8089 server = http.server.HTTPServer(("", port), Handler) localurl = f"http://localhost:{port}" print(f"Opening {localurl} ...", file=sys.stderr)