Skip to content

Commit 4fd8402

Browse files
authored
fix subscription id not correclty set in helm chart (#9467)
1 parent 2979f01 commit 4fd8402

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

src/aks-agent/HISTORY.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ To release a new version, please select a new version number (usually plus 1 to
1212
Pending
1313
+++++++
1414

15+
1.0.0b13
16+
* fix subscription id not correclty set in helm chart
17+
1518
1.0.0b12
1619
++++++++
1720
* [BREAKING CHANGE]:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ def _create_helm_values(self):
812812
if self.cluster_name:
813813
aks_context["clusterName"] = self.cluster_name
814814
if self.subscription_id:
815-
aks_context["subscriptionId"] = self.subscription_id
815+
aks_context["subscriptionID"] = self.subscription_id
816816
if aks_context:
817817
helm_values["aksContext"] = aks_context
818818

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.0b12"
12+
VERSION = "1.0.0b13"
1313

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

0 commit comments

Comments
 (0)