ghz

package
v0.0.0-...-d5bad45 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 3, 2024 License: Apache-2.0 Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ErrRequireMinOneDistributedPod Backend spec requires 1 or more DistributedPods
	ErrRequireMinOneDistributedPod = errors.New("LoadTest must specify 1 or more DistributedPods")
	// ErrRequireTestFile the TestFile filed is required to not be an empty string
	ErrRequireTestFile = errors.New("LoadTest TestFile is required")
)

Functions

func NewFileConfigMap

func NewFileConfigMap(cfgName, filename string, content []byte) (*coreV1.ConfigMap, error)

NewFileConfigMap creates a configmap for the provided file information

func NewFileVolumeAndMount

func NewFileVolumeAndMount(name, cfg, filename string) (coreV1.Volume, coreV1.VolumeMount)

NewFileVolumeAndMount creates a new volume and volume mount for a configmap file

Types

type Backend

type Backend struct {
	// contains filtered or unexported fields
}

Backend is the ghz implementation of backend interface

func (*Backend) GetEnvConfig

func (b *Backend) GetEnvConfig() interface{}

GetEnvConfig must return config struct pointer

func (*Backend) NewJob

func (b *Backend) NewJob(
	loadTest loadTestV1.LoadTest,
	volumes []coreV1.Volume,
	mounts []coreV1.VolumeMount,
	reportURL string,
) *batchV1.Job

NewJob creates a new job that runs ghz

func (*Backend) SetDefaults

func (b *Backend) SetDefaults()

SetDefaults must set default values

func (*Backend) SetKubeClientSet

func (b *Backend) SetKubeClientSet(kubeClientSet kubernetes.Interface)

SetKubeClientSet receives a copy of kubeClientSet

func (*Backend) SetLogger

func (b *Backend) SetLogger(logger *zap.Logger)

SetLogger receives a copy of logger

func (*Backend) SetPodAnnotations

func (b *Backend) SetPodAnnotations(podAnnotations map[string]string)

SetPodAnnotations receives a copy of pod annotations

func (*Backend) SetPodNodeSelector

func (b *Backend) SetPodNodeSelector(nodeselector map[string]string)

SetPodNodeSelector receives a copy of pod node selectors

func (*Backend) SetPodTolerations

func (b *Backend) SetPodTolerations(tolerations []coreV1.Toleration)

SetPodTolerations receives a copy of pod tolerations

func (*Backend) Sync

func (b *Backend) Sync(ctx context.Context, loadTest loadTestV1.LoadTest, reportURL string) error

Sync checks if ghz kubernetes resources have been created, create them if they haven't

func (*Backend) SyncStatus

func (b *Backend) SyncStatus(ctx context.Context, _ loadTestV1.LoadTest, loadTestStatus *loadTestV1.LoadTestStatus) error

SyncStatus checks ghz resources and updates the status of the LoadTest resource

func (*Backend) TransformLoadTestSpec

func (b *Backend) TransformLoadTestSpec(spec *loadTestV1.LoadTestSpec) error

TransformLoadTestSpec use given spec to validate and return a new one or error

func (*Backend) Type

Type returns backend type name

type Config

type Config struct {
	ImageName      string `envconfig:"GHZ_IMAGE_NAME" default:"hellofresh/kangal-ghz"`
	ImageTag       string `envconfig:"GHZ_IMAGE_TAG" default:"latest"`
	CPULimits      string `envconfig:"GHZ_CPU_LIMITS"`
	CPURequests    string `envconfig:"GHZ_CPU_REQUESTS"`
	MemoryLimits   string `envconfig:"GHZ_MEMORY_LIMITS"`
	MemoryRequests string `envconfig:"GHZ_MEMORY_REQUESTS"`
}

Config specific to ghz backend

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL