Skip to content

Commit cf086d3

Browse files
authored
bump aks-agent to 0.4.0 (#9632)
1 parent ab436f6 commit cf086d3

4 files changed

Lines changed: 14 additions & 4 deletions

File tree

src/aks-agent/HISTORY.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,16 @@ To release a new version, please select a new version number (usually plus 1 to
1212
Pending
1313
+++++++
1414

15+
1.0.0b19
16+
++++++++
17+
* Bump aks-agent to v0.4.0
18+
* Chore: Remove aks mcp tool description to reduce system prompt length
19+
* Fix: Delete runbook from prompts after runbook toolset is removed
20+
1521
1.0.0b18
1622
++++++++
1723
* Bump aks-agent to v0.3.0
18-
* chore: use aks mcp streamable-http mode
24+
* Chore: use aks mcp streamable-http mode
1925
* Remove runbook toolset until it's stabilized
2026
* Several CEV fixes
2127
* Fix: accept endpoints ending with cognitiveservices.azure.com/ for Azure OpenAI service

src/aks-agent/azext_aks_agent/_consts.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,8 @@
5151
AGENT_LABEL_SELECTOR = "app.kubernetes.io/name=aks-agent"
5252
AKS_MCP_LABEL_SELECTOR = "app.kubernetes.io/name=aks-mcp"
5353

54+
# AKS Agent Version (shared by helm chart and docker image)
55+
AKS_AGENT_VERSION = "0.4.0"
56+
5457
# Helm Configuration
5558
HELM_VERSION = "3.16.0"

src/aks-agent/azext_aks_agent/agent/k8s/aks_agent_manager.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
from azext_aks_agent._consts import (
1515
AGENT_LABEL_SELECTOR,
1616
AGENT_NAMESPACE,
17+
AKS_AGENT_VERSION,
1718
AKS_MCP_LABEL_SELECTOR,
1819
CONFIG_DIR,
1920
)
@@ -128,7 +129,7 @@ def __init__(self, resource_group_name: str, cluster_name: str,
128129
self.subscription_id: str = subscription_id
129130

130131
self.chart_repo = "oci://mcr.microsoft.com/aks/aks-agent-chart/aks-agent"
131-
self.chart_version = "0.3.0"
132+
self.chart_version = AKS_AGENT_VERSION
132133

133134
# credentials for aks-mcp
134135
# Default empty customized cluster role name means using default cluster role
@@ -973,7 +974,7 @@ def __init__(self, resource_group_name: str, cluster_name: str,
973974
self.config_dir = self.base_config_dir / subscription_id / resource_group_name / cluster_name
974975

975976
# Docker image for client mode execution
976-
self.docker_image = "mcr.microsoft.com/aks/aks-agent:v0.3.0-client"
977+
self.docker_image = f"mcr.microsoft.com/aks/aks-agent:v{AKS_AGENT_VERSION}-client"
977978

978979
self.llm_config_manager = LLMConfigManagerLocal(
979980
subscription_id=subscription_id,

src/aks-agent/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from setuptools import find_packages, setup
1111

12-
VERSION = "1.0.0b18"
12+
VERSION = "1.0.0b19"
1313

1414
CLASSIFIERS = [
1515
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)