cert-manager/test/e2e/framework/addon/base/base.go
Ashley Davis 3a055cc2f5
rename all uses of github.com/jetstack/cert-manager
This was done by running the following command twice:

 ```bash
 grep -Ri "github.com/jetstack/cert-manager" . | \
 cut -d":" -f1 | \
 sort | \
 uniq | \
 xargs sed -i
 "s/github.com\/jetstack\/cert-manager/github.com\/cert-manager\/cert-manager/"
 ```

Signed-off-by: Ashley Davis <ashley.davis@jetstack.io>
2022-02-02 09:08:31 +00:00

86 lines
2.1 KiB
Go

/*
Copyright 2020 The cert-manager 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 base implements a basis for plugins that need to use the Kubernetes
// API to build upon.
package base
import (
"k8s.io/client-go/kubernetes"
"github.com/cert-manager/cert-manager/test/e2e/framework/config"
"github.com/cert-manager/cert-manager/test/e2e/framework/helper"
"github.com/cert-manager/cert-manager/test/e2e/framework/util"
)
type Base struct {
// details is stored here after a call to Setup() to save constructing the
// client on additional invocations to this instance of Base's Config function
// in the event a suite is run in serial
details *Details
}
// Details return the details about the certmanager instance deployed
type Details struct {
// Config is exposed here to make it easier for upstream consumers to access
// the global configuration.
Config *config.Config
// KubeClient is a configured Kubernetes clientset for addons to use.
KubeClient kubernetes.Interface
}
func (d *Details) Helper() *helper.Helper {
return &helper.Helper{
KubeClient: d.KubeClient,
}
}
func (b *Base) Setup(c *config.Config) error {
kubeConfig, err := util.LoadConfig(c.KubeConfig, c.KubeContext)
if err != nil {
return err
}
kubeClientset, err := kubernetes.NewForConfig(kubeConfig)
if err != nil {
return err
}
b.details = &Details{
Config: c,
KubeClient: kubeClientset,
}
return nil
}
func (b *Base) Provision() error {
return nil
}
func (b *Base) Deprovision() error {
return nil
}
func (b *Base) Details() *Details {
return b.details
}
func (b *Base) SupportsGlobal() bool {
return true
}