Files
velero/pkg/install/resources_test.go
Tiger Kaovilai 35d2cc0890 Add priority class support for Velero server and node-agent
- Add --server-priority-class-name and --node-agent-priority-class-name flags to velero install command
- Configure data mover pods (PVB/PVR/DataUpload/DataDownload) to use priority class from node-agent-configmap
- Configure maintenance jobs to use priority class from repo-maintenance-job-configmap (global config only)
- Add priority class validation with ValidatePriorityClass and GetDataMoverPriorityClassName utilities
- Update e2e tests to include PriorityClass testing utilities
- Move priority class design document to Implemented folder
- Add comprehensive unit tests for all priority class implementations
- Update documentation for priority class configuration
- Add changelog entry for #8883

Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>

remove unused test utils

Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>

feat: add unit test for getting priority class name in maintenance jobs

Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>

doc update

Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>

feat: add priority class validation for repository maintenance jobs

- Add ValidatePriorityClassWithClient function to validate priority class existence
- Integrate validation in maintenance.go when creating maintenance jobs
- Update tests to cover the new validation functionality
- Return boolean from ValidatePriorityClass to allow fallback behavior

This ensures maintenance jobs don't fail due to non-existent priority classes,
following the same pattern used for data mover pods.

Addresses feedback from:
https://github.com/vmware-tanzu/velero/pull/8883#discussion_r2238681442

Refs #8869

Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>

refactor: clean up priority class handling for data mover pods

- Fix comment in node_agent.go to clarify PriorityClassName is only for data mover pods
- Simplify server.go to use dataPathConfigs.PriorityClassName directly
- Remove redundant priority class logging from controllers as it's already logged during server startup
- Keep logging centralized in the node-agent server initialization

This reduces code duplication and clarifies the scope of priority class configuration.

🤖 Generated with [Claude Code](https://claude.ai/code)

Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>

refactor: remove GetDataMoverPriorityClassName from kube utilities

Remove GetDataMoverPriorityClassName function and its tests as priority
class is now read directly from dataPathConfigs instead of parsing from
ConfigMap. This simplifies the codebase by eliminating the need for
indirect ConfigMap parsing.

Refs #8869

🤖 Generated with [Claude Code](https://claude.ai/code)

Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>

refactor: remove priority class validation from install command

Remove priority class validation during install as it's redundant
since validation already occurs during server startup. Users cannot
see console logs during install, making the validation warnings
ineffective at this stage.

The validation remains in place during server and node-agent startup
where it's more appropriate and visible to users.

Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>
Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-06 01:36:22 -04:00

249 lines
8.1 KiB
Go

/*
Copyright 2019 the Velero contributors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package install
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
)
func TestResources(t *testing.T) {
bsl := BackupStorageLocation(DefaultVeleroNamespace, "test", "test", "", make(map[string]string), []byte("test"))
assert.Equal(t, "velero", bsl.ObjectMeta.Namespace)
assert.Equal(t, "test", bsl.Spec.Provider)
assert.Equal(t, "test", bsl.Spec.StorageType.ObjectStorage.Bucket)
assert.Equal(t, make(map[string]string), bsl.Spec.Config)
assert.Equal(t, []byte("test"), bsl.Spec.ObjectStorage.CACert)
vsl := VolumeSnapshotLocation(DefaultVeleroNamespace, "test", make(map[string]string))
assert.Equal(t, "velero", vsl.ObjectMeta.Namespace)
assert.Equal(t, "test", vsl.Spec.Provider)
assert.Equal(t, make(map[string]string), vsl.Spec.Config)
ns := Namespace("velero")
assert.Equal(t, "velero", ns.Name)
// For k8s version v1.25 and later, need to add the following labels to make
// velero installation namespace has privileged version to work with
// PSA(Pod Security Admission) and PSS(Pod Security Standards).
assert.Equal(t, "privileged", ns.Labels["pod-security.kubernetes.io/enforce"])
assert.Equal(t, "latest", ns.Labels["pod-security.kubernetes.io/enforce-version"])
assert.Equal(t, "privileged", ns.Labels["pod-security.kubernetes.io/audit"])
assert.Equal(t, "latest", ns.Labels["pod-security.kubernetes.io/audit-version"])
assert.Equal(t, "privileged", ns.Labels["pod-security.kubernetes.io/warn"])
assert.Equal(t, "latest", ns.Labels["pod-security.kubernetes.io/warn-version"])
crb := ClusterRoleBinding(DefaultVeleroNamespace)
// The CRB is a cluster-scoped resource
assert.Empty(t, crb.ObjectMeta.Namespace)
assert.Equal(t, "velero", crb.ObjectMeta.Name)
assert.Equal(t, "velero", crb.Subjects[0].Namespace)
customNamespaceCRB := ClusterRoleBinding("foo")
// The CRB is a cluster-scoped resource
assert.Empty(t, customNamespaceCRB.ObjectMeta.Namespace)
assert.Equal(t, "velero-foo", customNamespaceCRB.ObjectMeta.Name)
assert.Equal(t, "foo", customNamespaceCRB.Subjects[0].Namespace)
sa := ServiceAccount(DefaultVeleroNamespace, map[string]string{"abcd": "cbd"})
assert.Equal(t, "velero", sa.ObjectMeta.Namespace)
assert.Equal(t, "cbd", sa.ObjectMeta.Annotations["abcd"])
}
func TestAllCRDs(t *testing.T) {
list := AllCRDs()
assert.Len(t, list.Items, 13)
assert.Equal(t, Labels(), list.Items[0].GetLabels())
}
func TestAllResources(t *testing.T) {
option := &VeleroOptions{
Namespace: "velero",
SecretData: []byte{'a'},
UseVolumeSnapshots: true,
UseNodeAgent: true,
UseNodeAgentWindows: true,
}
list := AllResources(option)
objects := map[string][]unstructured.Unstructured{}
for _, item := range list.Items {
objects[item.GetKind()] = append(objects[item.GetKind()], item)
}
ns, exist := objects["Namespace"]
require.True(t, exist)
assert.Equal(t, "velero", ns[0].GetName())
_, exist = objects["ClusterRoleBinding"]
assert.True(t, exist)
_, exist = objects["ServiceAccount"]
assert.True(t, exist)
_, exist = objects["Secret"]
assert.True(t, exist)
_, exist = objects["BackupStorageLocation"]
assert.True(t, exist)
_, exist = objects["VolumeSnapshotLocation"]
assert.True(t, exist)
_, exist = objects["Deployment"]
assert.True(t, exist)
ds, exist := objects["DaemonSet"]
assert.True(t, exist)
assert.Len(t, ds, 2)
}
func TestAllResourcesWithPriorityClassName(t *testing.T) {
testCases := []struct {
name string
serverPriorityClassName string
nodeAgentPriorityClassName string
useNodeAgent bool
}{
{
name: "with same priority class for server and node agent",
serverPriorityClassName: "high-priority",
nodeAgentPriorityClassName: "high-priority",
useNodeAgent: true,
},
{
name: "with different priority classes for server and node agent",
serverPriorityClassName: "high-priority",
nodeAgentPriorityClassName: "medium-priority",
useNodeAgent: true,
},
{
name: "with only server priority class",
serverPriorityClassName: "high-priority",
nodeAgentPriorityClassName: "",
useNodeAgent: true,
},
{
name: "with only node agent priority class",
serverPriorityClassName: "",
nodeAgentPriorityClassName: "medium-priority",
useNodeAgent: true,
},
{
name: "with priority class name without node agent",
serverPriorityClassName: "high-priority",
nodeAgentPriorityClassName: "medium-priority",
useNodeAgent: false,
},
{
name: "without priority class name with node agent",
serverPriorityClassName: "",
nodeAgentPriorityClassName: "",
useNodeAgent: true,
},
{
name: "without priority class name without node agent",
serverPriorityClassName: "",
nodeAgentPriorityClassName: "",
useNodeAgent: false,
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
// Create VeleroOptions with the priority class names
options := &VeleroOptions{
Namespace: "velero",
UseNodeAgent: tc.useNodeAgent,
ServerPriorityClassName: tc.serverPriorityClassName,
NodeAgentPriorityClassName: tc.nodeAgentPriorityClassName,
}
// Generate all resources
resources := AllResources(options)
// Find the deployment and verify priority class name
deploymentFound := false
daemonsetFound := false
for i := range resources.Items {
item := resources.Items[i]
// Check deployment
if item.GetKind() == "Deployment" && item.GetName() == "velero" {
deploymentFound = true
// Extract priority class name from the unstructured object
priorityClassName, found, err := unstructured.NestedString(
item.Object,
"spec", "template", "spec", "priorityClassName",
)
require.NoError(t, err)
if tc.serverPriorityClassName != "" {
assert.True(t, found, "Server priorityClassName should be set")
assert.Equal(t, tc.serverPriorityClassName, priorityClassName,
"Server deployment should have the correct priority class")
} else {
// If no priority class name was provided, it might not be set at all
if found {
assert.Empty(t, priorityClassName)
}
}
}
// Check daemonset if node agent is enabled
if tc.useNodeAgent && item.GetKind() == "DaemonSet" && item.GetName() == "node-agent" {
daemonsetFound = true
// Extract priority class name from the unstructured object
priorityClassName, found, err := unstructured.NestedString(
item.Object,
"spec", "template", "spec", "priorityClassName",
)
require.NoError(t, err)
if tc.nodeAgentPriorityClassName != "" {
assert.True(t, found, "Node agent priorityClassName should be set")
assert.Equal(t, tc.nodeAgentPriorityClassName, priorityClassName,
"Node agent daemonset should have the correct priority class")
} else {
// If no priority class name was provided, it might not be set at all
if found {
assert.Empty(t, priorityClassName)
}
}
}
}
// Verify we found the deployment
assert.True(t, deploymentFound, "Deployment should be present in resources")
// Verify we found the daemonset if node agent is enabled
if tc.useNodeAgent {
assert.True(t, daemonsetFound, "DaemonSet should be present when UseNodeAgent is true")
}
})
}
}