Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion controllers/velero.go
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ func (r *VeleroReconciler) buildVeleroDeployment(veleroDeployment *appsv1.Deploy
},
}

err := credentials.AppendPluginSpecficSpecs(velero, veleroDeployment)
err := credentials.AppendPluginSpecificSpecs(velero, veleroDeployment)

if err != nil {
return err
Expand Down
2 changes: 1 addition & 1 deletion pkg/credentials/credentials.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func AppendCloudProviderVolumes(velero *oadpv1alpha1.Velero, ds *appsv1.DaemonSe
}

// add plugin specific specs to velero deployment
func AppendPluginSpecficSpecs(velero *oadpv1alpha1.Velero, veleroDeployment *appsv1.Deployment) error {
func AppendPluginSpecificSpecs(velero *oadpv1alpha1.Velero, veleroDeployment *appsv1.Deployment) error {
var veleroContainer *corev1.Container

for i, container := range veleroDeployment.Spec.Template.Spec.Containers {
Expand Down