Skip to content
Merged
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
2 changes: 1 addition & 1 deletion charts/sysdig-mcp/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ version: 0.1.3
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v0.1.3-beta.0"
appVersion: "v0.1.3-beta.1"
2 changes: 1 addition & 1 deletion charts/sysdig-mcp/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ image:
repository: ghcr.io/sysdiglabs/sysdig-mcp-server
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "v0.1.3-beta.0"
tag: "v0.1.3-beta.1"

imagePullSecrets: []
nameOverride: ""
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "sysdig-mcp-server"
version = "0.1.3-beta.0"
version = "0.1.3-beta.1"
description = "Sysdig MCP Server"
readme = "README.md"
requires-python = ">=3.12"
Expand Down
2 changes: 1 addition & 1 deletion utils/sysdig/client_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def _get_public_api_url(base_url: str) -> str:
# This assumes the region is a subdomain that starts with 2 lowercase letters and ends with a digit
pattern = re.search(r"https://(?:(?P<region1>[a-z]{2}\d)\.app|app\.(?P<region2>[a-z]{2}\d))\.sysdig\.com", base_url)
if pattern:
region = pattern.group(1) # Extract the region
region = pattern.group("region1") or pattern.group("region2") # Extract the region
return f"https://api.{region}.sysdig.com"
else:
# Edge case for the secure API URL that is us1
Expand Down