settings

package
v0.3.0-rc2 Latest Latest
Warning

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

Go to latest
Published: Oct 10, 2021 License: Apache-2.0 Imports: 5 Imported by: 13

Documentation

Index

Constants

View Source
const (
	BackupTargetSettingName = "backup-target"
	DefaultDashboardUIURL   = "https://releases.rancher.com/harvester-ui/dashboard/v0.3.0-rc2/index.html"
)

Variables

View Source
var (
	InjectDefaults string

	APIUIVersion                 = NewSetting("api-ui-version", "1.1.9") // Please update the HARVESTER_API_UI_VERSION in package/Dockerfile when updating the version here.
	ServerVersion                = NewSetting("server-version", "dev")
	UIIndex                      = NewSetting("ui-index", DefaultDashboardUIURL)
	UIPath                       = NewSetting("ui-path", "/usr/share/harvester/harvester")
	UISource                     = NewSetting("ui-source", "auto") // Options are 'auto', 'external' or 'bundled'
	VolumeSnapshotClass          = NewSetting("volume-snapshot-class", "longhorn")
	BackupTargetSet              = NewSetting(BackupTargetSettingName, InitBackupTargetToString())
	UpgradableVersions           = NewSetting("upgradable-versions", "")
	UpgradeCheckerEnabled        = NewSetting("upgrade-checker-enabled", "true")
	UpgradeCheckerURL            = NewSetting("upgrade-checker-url", "https://harvester-upgrade-responder.rancher.io/v1/checkupgrade")
	LogLevel                     = NewSetting("log-level", "info") // options are info, debug and trace
	SupportBundleImage           = NewSetting("support-bundle-image", "rancher/support-bundle-kit:v0.0.3")
	SupportBundleImagePullPolicy = NewSetting("support-bundle-image-pull-policy", "IfNotPresent")
	DefaultStorageClass          = NewSetting("default-storage-class", "longhorn")
)

Functions

func GetEnvKey

func GetEnvKey(key string) string

func InitBackupTargetToString

func InitBackupTargetToString() string

func IsRelease

func IsRelease() bool

func SetProvider

func SetProvider(p Provider) error

Types

type BackupTarget

type BackupTarget struct {
	Type               TargetType `json:"type"`
	Endpoint           string     `json:"endpoint"`
	AccessKeyID        string     `json:"accessKeyId"`
	SecretAccessKey    string     `json:"secretAccessKey"`
	BucketName         string     `json:"bucketName"`
	BucketRegion       string     `json:"bucketRegion"`
	Cert               string     `json:"cert"`
	VirtualHostedStyle bool       `json:"virtualHostedStyle"`
}

type Provider

type Provider interface {
	Get(name string) string
	Set(name, value string) error
	SetIfUnset(name, value string) error
	SetAll(settings map[string]Setting) error
}

type Setting

type Setting struct {
	Name     string
	Default  string
	ReadOnly bool
}

func NewSetting

func NewSetting(name, def string) Setting

func (Setting) Get

func (s Setting) Get() string

func (Setting) GetInt

func (s Setting) GetInt() int

func (Setting) Set

func (s Setting) Set(value string) error

func (Setting) SetIfUnset

func (s Setting) SetIfUnset(value string) error

type TargetType

type TargetType string
const (
	S3BackupType  TargetType = "s3"
	NFSBackupType TargetType = "nfs"
)

Jump to

Keyboard shortcuts

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