feat: Remove pvc-for-tmp install arg

Co-authored-by: aider (gemini/gemini-2.5-pro) <aider@aider.chat>
Signed-off-by: Scott Seago <sseago@redhat.com>
This commit is contained in:
Scott Seago
2025-12-02 16:49:17 -05:00
co-authored by aider
parent 845eee4e60
commit 7111f3cea2
3 changed files with 0 additions and 42 deletions
-5
View File
@@ -272,7 +272,6 @@ type VeleroOptions struct {
NodeAgentConfigMap string
ItemBlockWorkerCount int
ConcurrentBackups int
PVCForTmp string
KubeletRootDir string
NodeAgentDisableHostPath bool
ServerPriorityClassName string
@@ -367,10 +366,6 @@ func AllResources(o *VeleroOptions) *unstructured.UnstructuredList {
WithConcurrentBackups(o.ConcurrentBackups),
}
if o.PVCForTmp != "" {
deployOpts = append(deployOpts, WithPVCForTmp(o.PVCForTmp))
}
if o.ServerPriorityClassName != "" {
deployOpts = append(deployOpts, WithPriorityClassName(o.ServerPriorityClassName))
}