settings

package
v1.1.3-rc2 Latest Latest
Warning

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

Go to latest
Published: Dec 8, 2023 License: Apache-2.0 Imports: 8 Imported by: 13

Documentation

Index

Constants

View Source
const (
	AdditionalCASettingName           = "additional-ca"
	BackupTargetSettingName           = "backup-target"
	VMForceResetPolicySettingName     = "vm-force-reset-policy"
	SupportBundleTimeoutSettingName   = "support-bundle-timeout"
	HTTPProxySettingName              = "http-proxy"
	OvercommitConfigSettingName       = "overcommit-config"
	SSLCertificatesSettingName        = "ssl-certificates"
	SSLParametersName                 = "ssl-parameters"
	VipPoolsConfigSettingName         = "vip-pools"
	VolumeSnapshotClassSettingName    = "volume-snapshot-class"
	DefaultDashboardUIURL             = "https://releases.rancher.com/harvester-ui/dashboard/release-harvester-v1.1/index.html"
	SupportBundleImageName            = "support-bundle-image"
	CSIDriverConfigSettingName        = "csi-driver-config"
	UIIndexSettingName                = "ui-index"
	UIPathSettingName                 = "ui-path"
	UISourceSettingName               = "ui-source"
	UIPluginIndexSettingName          = "ui-plugin-index"
	UIPluginBundledVersionSettingName = "ui-plugin-bundled-version"
	DefaultUIPluginURL                = "https://releases.rancher.com/harvester-ui/plugin/harvester-release-harvester-v1.1/harvester-release-harvester-v1.1.umd.min.js"
	ContainerdRegistrySettingName     = "containerd-registry"
	HarvesterCSICCMSettingName        = "harvester-csi-ccm-versions"
	StorageNetworkName                = "storage-network"
)

Variables

View Source
var (
	InjectDefaults string

	AdditionalCA            = NewSetting(AdditionalCASettingName, "")
	APIUIVersion            = NewSetting("api-ui-version", "1.1.9") // Please update the HARVESTER_API_UI_VERSION in package/Dockerfile when updating the version here.
	ClusterRegistrationURL  = NewSetting("cluster-registration-url", "")
	ServerVersion           = NewSetting("server-version", "dev")
	UIIndex                 = NewSetting(UIIndexSettingName, DefaultDashboardUIURL)
	UIPath                  = NewSetting(UIPathSettingName, "/usr/share/harvester/harvester")
	UISource                = NewSetting(UISourceSettingName, "auto") // Options are 'auto', 'external' or 'bundled'
	UIPluginIndex           = NewSetting(UIPluginIndexSettingName, DefaultUIPluginURL)
	VolumeSnapshotClass     = NewSetting(VolumeSnapshotClassSettingName, "longhorn")
	BackupTargetSet         = NewSetting(BackupTargetSettingName, "")
	UpgradableVersions      = NewSetting("upgradable-versions", "")
	UpgradeCheckerEnabled   = NewSetting("upgrade-checker-enabled", "true")
	UpgradeCheckerURL       = NewSetting("upgrade-checker-url", "https://harvester-upgrade-responder.rancher.io/v1/checkupgrade")
	ReleaseDownloadURL      = NewSetting("release-download-url", "https://releases.rancher.com/harvester")
	LogLevel                = NewSetting("log-level", "info") // options are info, debug and trace
	SSLCertificates         = NewSetting(SSLCertificatesSettingName, "{}")
	SSLParameters           = NewSetting(SSLParametersName, "{}")
	SupportBundleImage      = NewSetting(SupportBundleImageName, "{}")
	SupportBundleNamespaces = NewSetting("support-bundle-namespaces", "")
	SupportBundleTimeout    = NewSetting(SupportBundleTimeoutSettingName, "10") // Unit is minute. 0 means disable timeout.
	DefaultStorageClass     = NewSetting("default-storage-class", "longhorn")
	HTTPProxy               = NewSetting(HTTPProxySettingName, "{}")
	VMForceResetPolicySet   = NewSetting(VMForceResetPolicySettingName, InitVMForceResetPolicy())
	OvercommitConfig        = NewSetting(OvercommitConfigSettingName, `{"cpu":1600,"memory":150,"storage":200}`)
	VipPools                = NewSetting(VipPoolsConfigSettingName, "")
	AutoDiskProvisionPaths  = NewSetting("auto-disk-provision-paths", "")
	CSIDriverConfig         = NewSetting(CSIDriverConfigSettingName, `{"driver.longhorn.io":{"volumeSnapshotClassName":"longhorn-snapshot","backupVolumeSnapshotClassName":"longhorn"}}`)
	ContainerdRegistry      = NewSetting(ContainerdRegistrySettingName, "")
	StorageNetwork          = NewSetting(StorageNetworkName, "")

	// HarvesterCSICCMVersion this is the chart version from https://github.com/harvester/charts instead of image versions
	HarvesterCSICCMVersion = NewSetting(HarvesterCSICCMSettingName, `{"harvester-cloud-provider":">=0.0.1 <0.2.0","harvester-csi-provider":">=0.0.1 <0.2.0"}`)
	WhiteListedSettings    = []string{"server-version", "default-storage-class", "harvester-csi-ccm-versions"}
)

Functions

func GetEnvKey

func GetEnvKey(key string) string

func InitBackupTargetToString

func InitBackupTargetToString() string

func InitVMForceResetPolicy added in v1.0.0

func InitVMForceResetPolicy() 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"`
}

func DecodeBackupTarget added in v1.0.0

func DecodeBackupTarget(value string) (*BackupTarget, error)

func (*BackupTarget) IsDefaultBackupTarget added in v1.0.0

func (target *BackupTarget) IsDefaultBackupTarget() bool

type CSIDriverInfo added in v1.1.0

type CSIDriverInfo struct {
	VolumeSnapshotClassName       string `json:"volumeSnapshotClassName"`
	BackupVolumeSnapshotClassName string `json:"backupVolumeSnapshotClassName"`
}

func GetCSIDriverInfo added in v1.1.0

func GetCSIDriverInfo(provisioner string) (*CSIDriverInfo, error)

type Image added in v1.0.1

type Image struct {
	Repository      string            `json:"repository"`
	Tag             string            `json:"tag"`
	ImagePullPolicy corev1.PullPolicy `json:"imagePullPolicy"`
}

type Overcommit added in v1.0.0

type Overcommit struct {
	CPU     int `json:"cpu"`
	Memory  int `json:"memory"`
	Storage int `json:"storage"`
}

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 SSLCertificate added in v1.0.0

type SSLCertificate struct {
	CA                string `json:"ca"`
	PublicCertificate string `json:"publicCertificate"`
	PrivateKey        string `json:"privateKey"`
}

type SSLParameter added in v1.0.0

type SSLParameter struct {
	Protocols string `json:"protocols"`
	Ciphers   string `json:"ciphers"`
}

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"
)

type VMForceResetPolicy added in v1.0.0

type VMForceResetPolicy struct {
	Enable bool `json:"enable"`
	// Period means how many seconds to wait for a node get back.
	Period int64 `json:"period"`
}

func DecodeVMForceResetPolicy added in v1.0.0

func DecodeVMForceResetPolicy(value string) (*VMForceResetPolicy, error)

Jump to

Keyboard shortcuts

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