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
7 changes: 6 additions & 1 deletion src/aks-agent/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ To release a new version, please select a new version number (usually plus 1 to
Pending
+++++++

1.0.0b20
++++++++
* Bump aks-agent to v0.5.0
* Add probe and seccompProfile to address compatibility with AKS Automatic clusters
Comment thread
mainred marked this conversation as resolved.

1.0.0b19
++++++++
* Bump aks-agent to v0.4.0
Expand All @@ -29,7 +34,7 @@ Pending
1.0.0b17
++++++++
* Fix: remove the prompt to user about managed identity client id during `az aks agent-init`

1.0.0b16
++++++++
* Fix: client mode use AzureCLICredential to authenticate with Azure
Expand Down
2 changes: 1 addition & 1 deletion src/aks-agent/azext_aks_agent/_consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
AKS_MCP_LABEL_SELECTOR = "app.kubernetes.io/name=aks-mcp"

# AKS Agent Version (shared by helm chart and docker image)
AKS_AGENT_VERSION = "0.4.0"
AKS_AGENT_VERSION = "0.5.0"

# Helm Configuration
HELM_VERSION = "3.16.0"
2 changes: 1 addition & 1 deletion src/aks-agent/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from setuptools import find_packages, setup

VERSION = "1.0.0b19"
VERSION = "1.0.0b20"
Comment thread
mainred marked this conversation as resolved.

CLASSIFIERS = [
"Development Status :: 4 - Beta",
Expand Down
Loading