-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add missing agent config example
Signed-off-by: Devon Crouse <[email protected]>
- Loading branch information
1 parent
9c8a97c
commit f276e49
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Copyright (c) 2023 Oracle Corporation and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl | ||
|
||
worker_pools = { | ||
oke-instance = { | ||
agent_config = { | ||
are_all_plugins_disabled = false, | ||
is_management_disabled = false, | ||
is_monitoring_disabled = false, | ||
plugins_config = { | ||
"Bastion" = "DISABLED", | ||
"Block Volume Management" = "DISABLED", | ||
"Compute HPC RDMA Authentication" = "DISABLED", | ||
"Compute HPC RDMA Auto-Configuration" = "DISABLED", | ||
"Compute Instance Monitoring" = "ENABLED", | ||
"Compute Instance Run Command" = "ENABLED", | ||
"Compute RDMA GPU Monitoring" = "DISABLED", | ||
"Custom Logs Monitoring" = "ENABLED", | ||
"Management Agent" = "ENABLED", | ||
"Oracle Autonomous Linux" = "DISABLED", | ||
"OS Management Service Agent" = "DISABLED", | ||
} | ||
} | ||
}, | ||
} |