mirror of
https://github.com/TECHNOFAB11/zfs-localpv.git
synced 2025-12-12 06:20:11 +01:00
53 lines
1.6 KiB
Go
53 lines
1.6 KiB
Go
|
|
/*
|
||
|
|
Copyright 2020 The OpenEBS Authors
|
||
|
|
|
||
|
|
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 v1alpha1
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/pkg/errors"
|
||
|
|
corev1 "k8s.io/api/core/v1"
|
||
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||
|
|
"strings"
|
||
|
|
)
|
||
|
|
|
||
|
|
// ConfigMapGetter abstracts fetching of ConfigMap instance from kubernetes
|
||
|
|
// cluster
|
||
|
|
type ConfigMapGetter interface {
|
||
|
|
Get(options metav1.GetOptions) (*corev1.ConfigMap, error)
|
||
|
|
}
|
||
|
|
|
||
|
|
type configmap struct {
|
||
|
|
namespace string // namespace where this configmap exists
|
||
|
|
name string // name of this configmap
|
||
|
|
}
|
||
|
|
|
||
|
|
// ConfigMap returns a new instance of configmap
|
||
|
|
func ConfigMap(namespace, name string) *configmap {
|
||
|
|
return &configmap{namespace: namespace, name: name}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Get returns configmap instance from kubernetes cluster
|
||
|
|
func (c *configmap) Get(options metav1.GetOptions) (cm *corev1.ConfigMap, err error) {
|
||
|
|
if len(strings.TrimSpace(c.name)) == 0 {
|
||
|
|
return nil, errors.Errorf("missing config map name: failed to get config map from namespace %s", c.namespace)
|
||
|
|
}
|
||
|
|
cs, err := Clientset().Get()
|
||
|
|
if err != nil {
|
||
|
|
return nil, errors.Wrapf(err, "failed to get config map %s %s", c.namespace, c.name)
|
||
|
|
}
|
||
|
|
return cs.CoreV1().ConfigMaps(c.namespace).Get(c.name, options)
|
||
|
|
}
|