Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AKS] Add --enable-azure-monitor-app-monitoring and --disable-azure-monitor-app-monitoring to aks-preview #7514

Merged
merged 16 commits into from
Apr 24, 2024
Prev Previous commit
Next Next commit
Adding params.py
  • Loading branch information
Janvi Jatakia (from Dev Box) committed Apr 5, 2024
commit 606edbc8507b9699c08e66adc49ab8eaf13a8618
12 changes: 12 additions & 0 deletions src/aks-preview/azext_aks_preview/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -814,6 +814,10 @@ def load_arguments(self, _):
c.argument("ksm_metric_annotations_allow_list")
c.argument("grafana_resource_id", validator=validate_grafanaresourceid)
c.argument("enable_windows_recording_rules", action="store_true")
c.argument("enable_azure_monitor_app_monitoring", action="store_true")
c.argument("enable_auto_instrumentation", action="store_true")
c.argument("enable_open_telemetry_metrics", action="store_true")
c.argument("enable_open_telemetry_logs", action="store_true")
c.argument("enable_cost_analysis", is_preview=True, action="store_true")
c.argument('enable_ai_toolchain_operator', is_preview=True, action='store_true')
# azure container storage
Expand Down Expand Up @@ -1143,6 +1147,14 @@ def load_arguments(self, _):
),
)
c.argument("disable_azure_monitor_metrics", action="store_true")
c.argument("enable_azure_monitor_app_monitoring", action="store_true")
c.argument("enable_auto_instrumentation", action="store_true")
c.argument("enable_open_telemetry_metrics", action="store_true")
c.argument("enable_open_telemetry_logs", action="store_true")
c.argument("disable_azure_monitor_app_monitoring", action="store_true")
c.argument("disable_auto_instrumentation", action="store_true")
c.argument("disable_open_telemetry_metrics", action="store_true")
c.argument("disable_open_telemetry_logs", action="store_true")
c.argument(
"enable_vpa",
action="store_true",
Expand Down