with '#' will be ignored, and an empty message aborts the commit. Author: Ethan Alicea <64653625+Tech-Gamer@users.noreply.github.com> On branch develop Your branch is up to date with 'origin/develop'. Changes to be committed: modified: .github/workflows/push.yaml modified: .github/workflows/release.yaml modified: CHANGELOG.md modified: Dockerfile modified: Makefile modified: README.md modified: cmd/configure.go modified: cmd/diagnostics.go modified: cmd/root.go modified: config/config.go modified: environment/allocations.go modified: environment/docker.go modified: environment/docker/api.go modified: environment/docker/container.go modified: environment/docker/environment.go modified: environment/docker/power.go modified: environment/docker/stats.go modified: environment/environment.go modified: environment/settings.go modified: events/events.go modified: go.mod modified: internal/cron/activity_cron.go modified: internal/cron/cron.go modified: internal/cron/sftp_cron.go modified: internal/database/database.go modified: internal/progress/progress.go modified: internal/progress/progress_test.go modified: loggers/cli/cli.go new file: oryxBuildBinary modified: parser/parser.go modified: remote/http.go modified: remote/servers.go modified: remote/types.go modified: router/downloader/downloader.go modified: router/middleware.go modified: router/middleware/middleware.go modified: router/middleware/request_error.go modified: router/router.go modified: router/router_download.go modified: router/router_server.go modified: router/router_server_backup.go modified: router/router_server_files.go modified: router/router_server_transfer.go modified: router/router_server_ws.go modified: router/router_system.go modified: router/router_transfer.go modified: router/tokens/parser.go modified: router/websocket/listeners.go modified: router/websocket/websocket.go modified: server/activity.go modified: server/backup.go modified: server/backup/backup.go modified: server/backup/backup_local.go modified: server/backup/backup_s3.go modified: server/configuration.go modified: server/console.go modified: server/crash.go modified: server/events.go modified: server/filesystem/archive.go modified: server/filesystem/filesystem.go modified: server/filesystem/filesystem_test.go modified: server/install.go modified: server/installer/installer.go modified: server/listeners.go modified: server/manager.go modified: server/mounts.go modified: server/power.go modified: server/power_test.go modified: server/resources.go modified: server/server.go modified: server/transfer/archive.go modified: server/transfer/source.go modified: server/transfer/transfer.go modified: server/update.go modified: sftp/event.go modified: sftp/handler.go modified: sftp/server.go modified: wings.go
70 lines
2.8 KiB
Go
70 lines
2.8 KiB
Go
package server
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/Tech-Gamer/nwy-wings/environment/docker"
|
|
|
|
"github.com/Tech-Gamer/nwy-wings/environment"
|
|
)
|
|
|
|
// SyncWithEnvironment updates the environment for the server to match any of
|
|
// the changed data. This pushes new settings and environment variables to the
|
|
// environment. In addition, the in-situ update method is called on the
|
|
// environment which will allow environments that make use of it (such as Docker)
|
|
// to immediately apply some settings without having to wait on a server to
|
|
// restart.
|
|
//
|
|
// This functionality allows a server's resources limits to be modified on the
|
|
// fly and have them apply right away allowing for dynamic resource allocation
|
|
// and responses to abusive server processes.
|
|
func (s *Server) SyncWithEnvironment() {
|
|
s.Log().Debug("syncing server settings with environment")
|
|
|
|
cfg := s.Config()
|
|
|
|
// Update the environment settings using the new information from this server.
|
|
s.Environment.Config().SetSettings(environment.Settings{
|
|
Mounts: s.Mounts(),
|
|
Allocations: cfg.Allocations,
|
|
Limits: cfg.Build,
|
|
})
|
|
|
|
// For Docker specific environments we also want to update the configured image
|
|
// and stop configuration.
|
|
if e, ok := s.Environment.(*docker.Environment); ok {
|
|
s.Log().Debug("syncing stop configuration with configured docker environment")
|
|
e.SetImage(cfg.Container.Image)
|
|
e.SetStopConfiguration(s.ProcessConfiguration().Stop)
|
|
}
|
|
|
|
// If build limits are changed, environment variables also change. Plus, any modifications to
|
|
// the startup command also need to be properly propagated to this environment.
|
|
//
|
|
// @see https://github.com/pterodactyl/panel/issues/2255
|
|
s.Environment.Config().SetEnvironmentVariables(s.GetEnvironmentVariables())
|
|
|
|
if !s.IsSuspended() {
|
|
// Update the environment in place, allowing memory and CPU usage to be adjusted
|
|
// on the fly without the user needing to reboot (theoretically).
|
|
s.Log().Info("performing server limit modification on-the-fly")
|
|
if err := s.Environment.InSituUpdate(); err != nil {
|
|
// This is not a failure, the process is still running fine and will fix itself on the
|
|
// next boot, or fail out entirely in a more logical position.
|
|
s.Log().WithField("error", err).Warn("failed to perform on-the-fly update of the server environment")
|
|
}
|
|
} else {
|
|
// Checks if the server is now in a suspended state. If so and a server process is currently running it
|
|
// will be gracefully stopped (and terminated if it refuses to stop).
|
|
if s.Environment.State() != environment.ProcessOfflineState {
|
|
s.Log().Info("server suspended with running process state, terminating now")
|
|
|
|
go func(s *Server) {
|
|
if err := s.Environment.WaitForStop(s.Context(), time.Minute, true); err != nil {
|
|
s.Log().WithField("error", err).Warn("failed to terminate server environment after suspension")
|
|
}
|
|
}(s)
|
|
}
|
|
}
|
|
}
|