Skip to content

Test commit to get Gemini to review #7529

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/smee-client/base/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- deployment.yaml
- rbac.yaml
- deployment.yaml
- rbac.yaml
3 changes: 1 addition & 2 deletions hack/kueue-vm-quotas/update-kueue-vm-quotas.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion hack/new-cluster/tasks/github/github-app-flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading