Skip to content

Commit 9745c9d

Browse files
authored
feat(cnl): Update stream for retina-operator 0.1.14 and ama agent update (#9342)
1 parent 673b7f0 commit 9745c9d

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

src/aks-preview/HISTORY.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,14 @@ To release a new version, please select a new version number (usually plus 1 to
1212
Pending
1313
+++++++
1414

15+
19.0.0b16
16+
+++++++
17+
* Update --enable-container-network-logs DCR to ContainerNetworkLogs instead of RetinaNetworkFlowLogs
18+
1519
19.0.0b15
1620
+++++++
1721
* Fix `NoneType` error when performing operations on automatic clusters that have hosted system components enabled.
1822

19-
2023
19.0.0b14
2124
+++++++
2225
* `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.

src/aks-preview/azext_aks_preview/addonconfiguration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"Microsoft-ContainerInventory",
5959
"Microsoft-ContainerNodeInventory",
6060
"Microsoft-Perf",
61-
"Microsoft-RetinaNetworkFlowLogs",
61+
"Microsoft-ContainerNetworkLogs",
6262
]
6363

6464

src/aks-preview/azext_aks_preview/tests/latest/test_aks_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18252,7 +18252,7 @@ def test_aks_create_acns_with_flow_logs(
1825218252
get_cmd = f'rest --method get --url https://management.azure.com{dcr_resource_id}?api-version=2022-06-01'
1825318253
self.cmd(get_cmd, checks=[
1825418254
self.check('properties.destinations.logAnalytics[0].workspaceResourceId', f'{workspace_resource_id}'),
18255-
self.check('properties.dataFlows[0].streams[-1]', 'Microsoft-RetinaNetworkFlowLogs'),
18255+
self.check('properties.dataFlows[0].streams[-1]', 'Microsoft-ContainerNetworkLogs'),
1825618256
])
1825718257

1825818258
disable_cmd = "aks update --resource-group={resource_group} --name={name} --disable-container-network-logs -o json"

src/aks-preview/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 = "19.0.0b15"
12+
VERSION = "19.0.0b16"
1313

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

0 commit comments

Comments
 (0)