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

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

19.0.0b15
+++++++
* Fix `NoneType` error when performing operations on automatic clusters that have hosted system components enabled.


19.0.0b14
+++++++
* `az aks safeguards`: Add support for Deployment Safeguards with Pod Security Standards (PSS). New `--pss-level` parameter allows setting PSS enforcement level to Privileged, Baseline, or Restricted. Commands now support both `-g/-n` and `--cluster` argument patterns.
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 @@ -18252,7 +18252,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.0b15"
VERSION = "19.0.0b16"

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