Skip to content
Merged
Changes from 4 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
Original file line number Diff line number Diff line change
Expand Up @@ -7425,6 +7425,10 @@ def update_addon_profiles(self, mc: ManagedCluster) -> ManagedCluster:
"""
self._ensure_mc(mc)

# Call the parent class method to handle base addon profile updates
# (including Azure Keyvault Secrets Provider secret rotation settings)
mc = super().update_addon_profiles(mc)

# Handle enable Azure Monitor logs
if self.context.get_enable_azure_monitor_logs():
self._setup_azure_monitor_logs(mc)
Expand Down
Loading