Skip to content

Commit

Permalink
Remove container all from description (#1497)
Browse files Browse the repository at this point in the history
  • Loading branch information
khewonc authored Oct 30, 2024
1 parent a33ab18 commit 05c1d4b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions api/datadoghq/v2alpha1/datadogagent_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -1472,8 +1472,7 @@ type DatadogAgentComponentOverride struct {

// Configure the basic configurations for each Agent container. Valid Agent container names are:
// `agent`, `cluster-agent`, `init-config`, `init-volume`, `process-agent`, `seccomp-setup`,
// `security-agent`, `system-probe`, `trace-agent`, and `all`.
// Configuration under `all` applies to all configured containers.
// `security-agent`, `system-probe`, and `trace-agent`.
// +optional
Containers map[common.AgentContainerName]*DatadogAgentGenericContainer `json:"containers,omitempty"`

Expand Down
3 changes: 1 addition & 2 deletions config/crd/bases/v1/datadoghq.com_datadogagents.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3921,8 +3921,7 @@ spec:
description: |-
Configure the basic configurations for each Agent container. Valid Agent container names are:
`agent`, `cluster-agent`, `init-config`, `init-volume`, `process-agent`, `seccomp-setup`,
`security-agent`, `system-probe`, `trace-agent`, and `all`.
Configuration under `all` applies to all configured containers.
`security-agent`, `system-probe`, and `trace-agent`.
type: object
createRbac:
description: Set CreateRbac to false to prevent automatic creation of Role/ClusterRole for this component
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration.v2alpha1.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ In the table, `spec.override.nodeAgent.image.name` and `spec.override.nodeAgent.
| [key].affinity.podAntiAffinity.preferredDuringSchedulingIgnoredDuringExecution | The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. |
| [key].affinity.podAntiAffinity.requiredDuringSchedulingIgnoredDuringExecution | If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. |
| [key].annotations `map[string]string` | Annotations provide annotations that are added to the different component (Datadog Agent, Cluster Agent, Cluster Check Runner) pods. |
| [key].containers `map[string]object` | Configure the basic configurations for each Agent container. Valid Agent container names are: `agent`, `cluster-agent`, `init-config`, `init-volume`, `process-agent`, `seccomp-setup`, `security-agent`, `system-probe`, `trace-agent`, and `all`. Configuration under `all` applies to all configured containers. |
| [key].containers `map[string]object` | Configure the basic configurations for each Agent container. Valid Agent container names are: `agent`, `cluster-agent`, `init-config`, `init-volume`, `process-agent`, `seccomp-setup`, `security-agent`, `system-probe`, and `trace-agent`. |
| [key].containers.[key].appArmorProfileName | AppArmorProfileName specifies an apparmor profile. |
| [key].containers.[key].args `[]string` | Args allows the specification of extra args to the `Command` parameter |
| [key].containers.[key].command `[]string` | Command allows the specification of a custom entrypoint for container |
Expand Down

0 comments on commit 05c1d4b

Please sign in to comment.