-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use label to select Velero deployment in plugin cmd (#3447)
* Use label to select Velero deployment in plugin cmd Signed-off-by: F. Gold <fgold@vmware.com> * Move veleroLabel constant closer to usage Signed-off-by: F. Gold <fgold@vmware.com> * Add changelog Signed-off-by: F. Gold <fgold@vmware.com> * Remove year from copyright in new file Signed-off-by: F. Gold <fgold@vmware.com> * Export and use install.Labels() function Signed-off-by: F. Gold <fgold@vmware.com>
- Loading branch information
1 parent
502fb8d
commit 6455350
Showing
6 changed files
with
57 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Use label to select Velero deployment in plugin cmd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
Copyright 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 plugin | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/pkg/errors" | ||
appsv1api "k8s.io/api/apps/v1" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/labels" | ||
"k8s.io/client-go/kubernetes" | ||
|
||
"github.com/vmware-tanzu/velero/pkg/install" | ||
) | ||
|
||
// veleroDeployment returns a Velero deployment object, selected using a label. | ||
func veleroDeployment(ctx context.Context, kubeClient kubernetes.Interface, namespace string) (*appsv1api.Deployment, error) { | ||
veleroLabels := labels.FormatLabels(install.Labels()) | ||
|
||
deployList, err := kubeClient. | ||
AppsV1(). | ||
Deployments(namespace). | ||
List(ctx, metav1.ListOptions{ | ||
LabelSelector: veleroLabels, | ||
}) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
if len(deployList.Items) < 1 { | ||
return nil, errors.New("Velero deployment not found") | ||
} | ||
|
||
return &deployList.Items[0], nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters