Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Clarify priority class name configuration for data mover pods in node…
… agent

Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>
  • Loading branch information
kaovilai authored and blackpiglet committed Jul 23, 2025
commit 2d996790d0380b3a18fc44d7089cdf2a7a6bcfe4
6 changes: 3 additions & 3 deletions design/priority-class-name-support_design.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,13 +193,13 @@ We'll update the `Configs` struct in `pkg/nodeagent/node_agent.go` to include a
type Configs struct {
// ... existing fields ...

// PriorityClassName is the priority class name for both the node agent daemonset
// and the data mover pods it creates
// PriorityClassName is the priority class name for the data mover pods
// created by the node agent
PriorityClassName string `json:"priorityClassName,omitempty"`
}
```

This will allow users to configure the priority class name for both the node agent daemonset and data mover pods through a single node-agent-configmap. For example:
This will allow users to configure the priority class name for data mover pods through the node-agent-configmap. Note that the node agent daemonset itself gets its priority class from the `--node-agent-priority-class-name` CLI flag during installation, not from this configmap. For example:

```bash
# Create the ConfigMap before running velero install
Expand Down