Documentation
¶
Index ¶
- Constants
- Variables
- func ConfigureDirectories() error
- func ConfigureTimezone() error
- func EnableLogRotation() error
- func FromFile(path string) error
- func GetJwtAlgorithm() *jwt.HMACSHA
- func Set(c *Configuration)
- func SetDebugViaFlag(d bool)
- func Update(callback func(c *Configuration))
- func WriteToDisk(c *Configuration) error
- type ApiConfiguration
- type Backups
- type ClusterConfiguration
- type ClusterNetworkConfiguration
- type Configuration
- type ConsoleThrottles
- type CrashDetection
- type Overhead
- type RemoteQueryConfiguration
- type SftpConfiguration
- type SystemConfiguration
- type Transfers
Constants ¶
const DefaultLocation = "/etc/kubectyl/config.yml"
Variables ¶
var DefaultTLSConfig = &tls.Config{ NextProtos: []string{"h2", "http/1.1"}, CipherSuites: []uint16{ tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256, tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256, }, PreferServerCipherSuites: true, MinVersion: tls.VersionTLS12, MaxVersion: tls.VersionTLS13, CurvePreferences: []tls.CurveID{tls.X25519, tls.CurveP256}, }
DefaultTLSConfig sets sane defaults to use when configuring the internal webserver to listen for public connections.
@see https://blog.cloudflare.com/exposing-go-on-the-internet
Functions ¶
func ConfigureDirectories ¶
func ConfigureDirectories() error
ConfigureDirectories ensures that all the system directories exist on the system. These directories are created so that only the owner can read the data, and no other users.
This function IS NOT thread-safe.
func ConfigureTimezone ¶
func ConfigureTimezone() error
ConfigureTimezone sets the timezone data for the configuration if it is currently missing. If a value has been set, this functionality will only run to validate that the timezone being used is valid.
This function IS NOT thread-safe.
func EnableLogRotation ¶
func EnableLogRotation() error
EnableLogRotation writes a logrotate file for kuber to the system logrotate configuration directory if one exists and a logrotate file is not found. This allows us to basically automate away the log rotation for most installs, but also enable users to make modifications on their own.
This function IS NOT thread-safe.
func FromFile ¶
FromFile reads the configuration from the provided file and stores it in the global singleton for this instance.
func GetJwtAlgorithm ¶
func GetJwtAlgorithm() *jwt.HMACSHA
GetJwtAlgorithm returns the in-memory JWT algorithm.
func Set ¶
func Set(c *Configuration)
Set the global configuration instance. This is a blocking operation such that anything trying to set a different configuration value, or read the configuration will be paused until it is complete.
func SetDebugViaFlag ¶
func SetDebugViaFlag(d bool)
SetDebugViaFlag tracks if the application is running in debug mode because of a command line flag argument. If so we do not want to store that configuration change to the disk.
func Update ¶
func Update(callback func(c *Configuration))
Update performs an in-situ update of the global configuration object using a thread-safe mutex lock. This is the correct way to make modifications to the global configuration.
func WriteToDisk ¶
func WriteToDisk(c *Configuration) error
WriteToDisk writes the configuration to the disk. This is a thread safe operation and will only allow one write at a time. Additional calls while writing are queued up.
Types ¶
type ApiConfiguration ¶
type ApiConfiguration struct { // The interface that the internal webserver should bind to. Host string `default:"0.0.0.0" yaml:"host"` // The port that the internal webserver should bind to. Port int `default:"8080" yaml:"port"` // SSL configuration for the daemon. Ssl struct { Enabled bool `json:"enabled" yaml:"enabled"` CertificateFile string `json:"cert" yaml:"cert"` KeyFile string `json:"key" yaml:"key"` } // Determines if functionality for allowing remote download of files into server directories // is enabled on this instance. If set to "true" remote downloads will not be possible for // servers. DisableRemoteDownload bool `json:"disable_remote_download" yaml:"disable_remote_download"` // The maximum size for files uploaded through the Panel in MB. UploadLimit int64 `default:"100" json:"upload_limit" yaml:"upload_limit"` // A list of IP address of proxies that may send a X-Forwarded-For header to set the true clients IP TrustedProxies []string `json:"trusted_proxies" yaml:"trusted_proxies"` }
ApiConfiguration defines the configuration for the internal API that is exposed by the Kuber webserver.
type Backups ¶
type Backups struct { // WriteLimit imposes a Disk I/O write limit on backups to the disk, this affects all // backup drivers as the archiver must first write the file to the disk in order to // upload it to any external storage provider. // // If the value is less than 1, the write speed is unlimited, // if the value is greater than 0, the write speed is the value in MiB/s. // // Defaults to 0 (unlimited) WriteLimit int `default:"0" yaml:"write_limit"` // CompressionLevel determines how much backups created by kuber should be compressed. // // "none" -> no compression will be applied // "best_speed" -> uses gzip level 1 for fast speed // "best_compression" -> uses gzip level 9 for minimal disk space useage // // Defaults to "best_speed" (level 1) CompressionLevel string `default:"best_speed" yaml:"compression_level"` }
type ClusterConfiguration ¶
type ClusterConfiguration struct { Namespace string `json:"namespace" default:"default" yaml:"namespace"` Host string `json:"host" yaml:"host"` BearerToken string `json:"bearer_token" yaml:"bearer_token"` DNSPolicy string `json:"dns_policy" default:"clusterfirst" yaml:"dns_policy"` ImagePullPolicy string `json:"image_pull_policy" default:"ifnotpresent" yaml:"image_pull_policy"` ServiceType string `json:"service_type" default:"nodeport" yaml:"service_type"` MetalLBAddressPool string `json:"metallb_address_pool" yaml:"metallb_address_pool"` StorageClass string `json:"storage_class" default:"manual" yaml:"storage_class"` Insecure bool `json:"insecure" yaml:"insecure" default:"false"` Network ClusterNetworkConfiguration `json:"network" yaml:"network"` // InstallerLimits defines the limits on the installer containers that prevents a server's // installation process from unintentionally consuming more resources than expected. This // is used in conjunction with the server's defined limits. Whichever value is higher will // take precedence in the installer containers. InstallerLimits struct { Memory int64 `default:"1024" json:"memory" yaml:"memory"` Cpu int64 `default:"100" json:"cpu" yaml:"cpu"` } `json:"installer_limits" yaml:"installer_limits"` // Overhead controls the memory overhead given to all containers to circumvent certain // software such as the JVM not staying below the maximum memory limit. Overhead Overhead `json:"overhead" yaml:"overhead"` CertFile string `json:"cert_file" yaml:"cert_file"` KeyFile string `json:"key_file" yaml:"key_file"` CAFile string `json:"ca_file" yaml:"ca_file"` Metrics string `json:"metrics" default:"metrics_api" yaml:"metrics"` PrometheusAddress string `json:"prometheus_address" yaml:"prometheus_address"` SnapshotClass string `json:"snapshot_class" yaml:"snapshot_class"` ExternalTrafficPolicy string `json:"external_traffic_policy" default:"cluster" yaml:"external_traffic_policy"` RestrictedPodSecurityStandard bool `default:"true" json:"restricted_standard" yaml:"restricted_standard"` }
type ClusterNetworkConfiguration ¶
type ClusterNetworkConfiguration struct {
Dns []string `default:"[\"1.1.1.1\", \"1.0.0.1\"]"`
}
type Configuration ¶
type Configuration struct { // Determines if kuber should be running in debug mode. This value is ignored // if the debug flag is passed through the command line arguments. Debug bool AppName string `default:"Kubectyl" json:"app_name" yaml:"app_name"` // A unique identifier for this node in the Panel. Uuid string // An identifier for the token which must be included in any requests to the panel // so that the token can be looked up correctly. AuthenticationTokenId string `json:"token_id" yaml:"token_id"` // The token used when performing operations. Requests to this instance must // validate against it. AuthenticationToken string `json:"token" yaml:"token"` Api ApiConfiguration `json:"api" yaml:"api"` System SystemConfiguration `json:"system" yaml:"system"` Cluster ClusterConfiguration `json:"cluster" yaml:"cluster"` // Defines internal throttling configurations for server processes to prevent // someone from running an endless loop that spams data to logs. Throttles ConsoleThrottles // The location where the panel is running that this daemon should connect to // to collect data and send events. PanelLocation string `json:"remote" yaml:"remote"` RemoteQuery RemoteQueryConfiguration `json:"remote_query" yaml:"remote_query"` // AllowedMounts is a list of allowed host-system mount points. // This is required to have the "Server Mounts" feature work properly. AllowedMounts []string `json:"-" yaml:"allowed_mounts"` // AllowedOrigins is a list of allowed request origins. // The Panel URL is automatically allowed, this is only needed for adding // additional origins. AllowedOrigins []string `json:"allowed_origins" yaml:"allowed_origins"` // AllowCORSPrivateNetwork sets the `Access-Control-Request-Private-Network` header which // allows client browsers to make requests to internal IP addresses over HTTP. This setting // is only required by users running Kuber without SSL certificates and using internal IP // addresses in order to connect. Most users should NOT enable this setting. AllowCORSPrivateNetwork bool `json:"allow_cors_private_network" yaml:"allow_cors_private_network"` // contains filtered or unexported fields }
func Get ¶
func Get() *Configuration
Get returns the global configuration instance. This is a thread-safe operation that will block if the configuration is presently being modified.
Be aware that you CANNOT make modifications to the currently stored configuration by modifying the struct returned by this function. The only way to make modifications is by using the Update() function and passing data through in the callback.
func NewAtPath ¶
func NewAtPath(path string) (*Configuration, error)
NewAtPath creates a new struct and set the path where it should be stored. This function does not modify the currently stored global configuration.
type ConsoleThrottles ¶
type ConsoleThrottles struct { // Whether or not the throttler is enabled for this instance. Enabled bool `json:"enabled" yaml:"enabled" default:"true"` // The total number of lines that can be output in a given Period period before // a warning is triggered and counted against the server. Lines uint64 `json:"lines" yaml:"lines" default:"2000"` // The amount of time after which the number of lines processed is reset to 0. This runs in // a constant loop and is not affected by the current console output volumes. By default, this // will reset the processed line count back to 0 every 100ms. Period uint64 `json:"line_reset_interval" yaml:"line_reset_interval" default:"100"` }
type CrashDetection ¶
type CrashDetection struct { // CrashDetectionEnabled sets if crash detection is enabled globally for all servers on this node. CrashDetectionEnabled bool `default:"true" yaml:"enabled"` // Determines if Kuber should detect a server that stops with a normal exit code of // "0" as being crashed if the process stopped without any Kuber interaction. E.g. // the user did not press the stop button, but the process stopped cleanly. DetectCleanExitAsCrash bool `default:"false" yaml:"detect_clean_exit_as_crash"` // Timeout specifies the timeout between crashes that will not cause the server // to be automatically restarted, this value is used to prevent servers from // becoming stuck in a boot-loop after multiple consecutive crashes. Timeout int `default:"60" json:"timeout"` }
type Overhead ¶
type Overhead struct { // Override controls if the overhead limits should be overridden by the values in the config file. Override bool `default:"false" json:"override" yaml:"override"` // DefaultMultiplier sets the default multiplier for if no Multipliers are able to be applied. DefaultMultiplier float64 `default:"1.05" json:"default_multiplier" yaml:"default_multiplier"` // Multipliers allows overriding DefaultMultiplier depending on the amount of memory // configured for a server. // // Default values (used if Override is `false`) // - Less than 2048 MB of memory, multiplier of 1.15 (15%) // - Less than 4096 MB of memory, multiplier of 1.10 (10%) // - Otherwise, multiplier of 1.05 (5%) - specified in DefaultMultiplier // // If the defaults were specified in the config they would look like: // “`yaml // multipliers: // 2048: 1.15 // 4096: 1.10 // “` Multipliers map[int]float64 `json:"multipliers" yaml:"multipliers"` }
Overhead controls the memory overhead given to all containers to circumvent certain software such as the JVM not staying below the maximum memory limit.
func (Overhead) GetMultiplier ¶
type RemoteQueryConfiguration ¶
type RemoteQueryConfiguration struct { // The amount of time in seconds that Kuber should allow for a request to the Panel API // to complete. If this time passes the request will be marked as failed. If your requests // are taking longer than 30 seconds to complete it is likely a performance issue that // should be resolved on the Panel, and not something that should be resolved by upping this // number. Timeout int `default:"30" yaml:"timeout"` // The number of servers to load in a single request to the Panel API when booting the // Kuber instance. A single request is initially made to the Panel to get this number // of servers, and then the pagination status is checked and additional requests are // fired off in parallel to request the remaining pages. // // It is not recommended to change this from the default as you will likely encounter // memory limits on your Panel instance. In the grand scheme of things 4 requests for // 50 servers is likely just as quick as two for 100 or one for 400, and will certainly // be less likely to cause performance issues on the Panel. BootServersPerPage int `default:"50" yaml:"boot_servers_per_page"` }
RemoteQueryConfiguration defines the configuration settings for remote requests from Kuber to the Panel.
type SftpConfiguration ¶
type SftpConfiguration struct { // The bind address of the SFTP server. Address string `default:"0.0.0.0" json:"bind_address" yaml:"bind_address"` // The bind port of the SFTP server. Port int `default:"2022" json:"bind_port" yaml:"bind_port"` // If set to true, no write actions will be allowed on the SFTP server. ReadOnly bool `default:"false" yaml:"read_only"` // The docker image used for the SFTP server. SftpImage string `json:"sftp_image" default:"ghcr.io/raefon/sftp-server:latest" yaml:"sftp_image"` }
SftpConfiguration defines the configuration of the internal SFTP server.
type SystemConfiguration ¶
type SystemConfiguration struct { // The root directory where all of the kubectyl data is stored at. RootDirectory string `default:"/var/lib/kubectyl" yaml:"root_directory"` // Directory where logs for server installations and other kuber events are logged. LogDirectory string `default:"/var/log/kubectyl" yaml:"log_directory"` // Directory where the server data is stored at. Data string `default:"/home" yaml:"data"` // Directory where server archives for transferring will be stored. ArchiveDirectory string `default:"/var/lib/kubectyl/archives" yaml:"archive_directory"` // TmpDirectory specifies where temporary files for Kubectyl installation processes // should be created. This supports environments running docker-in-docker. TmpDirectory string `default:"/var/log/kubectyl" yaml:"tmp_directory"` // The timezone for this Kuber instance. This is detected by Kuber automatically if possible, // and falls back to UTC if not able to be detected. If you need to set this manually, that // can also be done. // // This timezone value is passed into all containers created by Kuber. Timezone string `yaml:"timezone"` // The amount of time in seconds that can elapse before a server's disk space calculation is // considered stale and a re-check should occur. DANGER: setting this value too low can seriously // impact system performance and cause massive I/O bottlenecks and high CPU usage for the Kuber // process. // // Set to 0 to disable disk checking entirely. This will always return 0 for the disk space used // by a server and should only be set in extreme scenarios where performance is critical and // disk usage is not a concern. DiskCheckInterval int64 `default:"150" yaml:"disk_check_interval"` // ActivitySendInterval is the amount of time that should ellapse between aggregated server activity // being sent to the Panel. By default this will send activity collected over the last minute. Keep // in mind that only a fixed number of activity log entries, defined by ActivitySendCount, will be sent // in each run. ActivitySendInterval int `default:"60" yaml:"activity_send_interval"` // ActivitySendCount is the number of activity events to send per batch. ActivitySendCount int `default:"100" yaml:"activity_send_count"` // If set to true, file permissions for a server will be checked when the process is // booted. This can cause boot delays if the server has a large amount of files. In most // cases disabling this should not have any major impact unless external processes are // frequently modifying a servers' files. CheckPermissionsOnBoot bool `default:"true" yaml:"check_permissions_on_boot"` // If set to false Kuber will not attempt to write a log rotate configuration to the disk // when it boots and one is not detected. EnableLogRotate bool `default:"true" yaml:"enable_log_rotate"` // The number of lines to send when a server connects to the websocket. WebsocketLogCount int64 `default:"150" yaml:"websocket_log_count"` Sftp SftpConfiguration `yaml:"sftp"` CrashDetection CrashDetection `yaml:"crash_detection"` Backups Backups `yaml:"backups"` Transfers Transfers `yaml:"transfers"` AutoRestart bool `default:"true" yaml:"auto_restart"` }
SystemConfiguration defines basic system configuration settings.
func (*SystemConfiguration) GetStatesPath ¶
func (sc *SystemConfiguration) GetStatesPath() string
GetStatesPath returns the location of the JSON file that tracks server states.
type Transfers ¶
type Transfers struct { // DownloadLimit imposes a Network I/O read limit when downloading a transfer archive. // // If the value is less than 1, the write speed is unlimited, // if the value is greater than 0, the write speed is the value in MiB/s. // // Defaults to 0 (unlimited) DownloadLimit int `default:"0" yaml:"download_limit"` }