Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 4 additions & 0 deletions src/aks-preview/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ To release a new version, please select a new version number (usually plus 1 to
Pending
+++++++

19.0.0.b12
+++++++
* Update enable-container-network-logs DCR to ContainerNetworkLogs instead of RetinaNetworkFlowLogs

19.0.0b11
+++++++
* Remove PMK validation for `--azure-keyvault-kms-key-id` parameter.
Expand Down
2 changes: 1 addition & 1 deletion src/aks-preview/azext_aks_preview/addonconfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"Microsoft-ContainerInventory",
"Microsoft-ContainerNodeInventory",
"Microsoft-Perf",
"Microsoft-RetinaNetworkFlowLogs",
"Microsoft-ContainerNetworkLogs",
]


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18049,7 +18049,7 @@ def test_aks_create_acns_with_flow_logs(
get_cmd = f'rest --method get --url https://management.azure.com{dcr_resource_id}?api-version=2022-06-01'
self.cmd(get_cmd, checks=[
self.check('properties.destinations.logAnalytics[0].workspaceResourceId', f'{workspace_resource_id}'),
self.check('properties.dataFlows[0].streams[-1]', 'Microsoft-RetinaNetworkFlowLogs'),
self.check('properties.dataFlows[0].streams[-1]', 'Microsoft-ContainerNetworkLogs'),
])

disable_cmd = "aks update --resource-group={resource_group} --name={name} --disable-container-network-logs -o json"
Expand Down
2 changes: 1 addition & 1 deletion src/aks-preview/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 = "19.0.0b11"
VERSION = "19.0.0b12"

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