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

1.0.0b13
* fix subscription id not correclty set in helm chart

1.0.0b12
++++++++
* [BREAKING CHANGE]:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ def _create_helm_values(self):
if self.cluster_name:
aks_context["clusterName"] = self.cluster_name
if self.subscription_id:
aks_context["subscriptionId"] = self.subscription_id
aks_context["subscriptionID"] = self.subscription_id
if aks_context:
helm_values["aksContext"] = aks_context

Expand Down
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.0b12"
VERSION = "1.0.0b13"

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