mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
* feat(jobs): add job service interface * feat(jobs): create job execution api * style(jobs): remove comment * feat(jobs): add bindings * feat(jobs): validate payload different cases * refactor(jobs): rename endpointJob method * refactor(jobs): return original error * feat(jobs): pull image before creating container * feat(jobs): run jobs with sh * style(jobs): remove comment * refactor(jobs): change error names * feat(jobs): sync pull image * fix(jobs): close image reader after error check * style(jobs): remove comment and add docs * refactor(jobs): inline script command * fix(jobs): handle pul image error * refactor(jobs): handle image pull output * fix(docker): set http client timeout to 100s * feat(api): create schedule type * feat(agent): add basic schedule api * feat(schedules): add schedule service in bolt * feat(schedule): add schedule service to handler * feat(schedule): add and list schedules from db * feat(agent): get schedule from db * feat(schedule): update schedule in db * feat(agent): delete schedule * fix(bolt): remove sync method from scheduleService * feat(schedules): save/delete script in fs * feat(schedules): schedules cron service implementation * feat(schedule): integrate handler with cron * feat(schedules): schedules API overhaul * refactor(project): remove .idea folder * fix(schedules): fix script task execute call * refactor(schedules): refactor/fix golint issues * refactor(schedules): update SnapshotTask documentation * refactor(schedules): validate image name in ScheduleCreate operation
61 lines
1.8 KiB
Go
61 lines
1.8 KiB
Go
package cron
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/portainer/portainer"
|
|
)
|
|
|
|
// SnapshotTaskContext represents the context required for the execution
|
|
// of a SnapshotTask.
|
|
type SnapshotTaskContext struct {
|
|
EndpointService portainer.EndpointService
|
|
Snapshotter portainer.Snapshotter
|
|
}
|
|
|
|
// SnapshotTask represents a task used to create endpoint snapshots.
|
|
// It can be scheduled.
|
|
type SnapshotTask struct {
|
|
context *SnapshotTaskContext
|
|
}
|
|
|
|
// NewSnapshotTask creates a new ScriptTask using the specified context.
|
|
func NewSnapshotTask(context *SnapshotTaskContext) SnapshotTask {
|
|
return SnapshotTask{
|
|
context: context,
|
|
}
|
|
}
|
|
|
|
// Run triggers the execution of the task.
|
|
// It will iterate through all the endpoints available in the database to
|
|
// create a snapshot of each one of them.
|
|
func (task SnapshotTask) Run() {
|
|
endpoints, err := task.context.EndpointService.Endpoints()
|
|
if err != nil {
|
|
log.Printf("background task error (endpoint snapshot). Unable to retrieve endpoint list (err=%s)\n", err)
|
|
return
|
|
}
|
|
|
|
for _, endpoint := range endpoints {
|
|
if endpoint.Type == portainer.AzureEnvironment {
|
|
continue
|
|
}
|
|
|
|
snapshot, err := task.context.Snapshotter.CreateSnapshot(&endpoint)
|
|
endpoint.Status = portainer.EndpointStatusUp
|
|
if err != nil {
|
|
log.Printf("background task error (endpoint snapshot). Unable to create snapshot (endpoint=%s, URL=%s) (err=%s)\n", endpoint.Name, endpoint.URL, err)
|
|
endpoint.Status = portainer.EndpointStatusDown
|
|
}
|
|
|
|
if snapshot != nil {
|
|
endpoint.Snapshots = []portainer.Snapshot{*snapshot}
|
|
}
|
|
|
|
err = task.context.EndpointService.UpdateEndpoint(endpoint.ID, &endpoint)
|
|
if err != nil {
|
|
log.Printf("background task error (endpoint snapshot). Unable to update endpoint (endpoint=%s, URL=%s) (err=%s)\n", endpoint.Name, endpoint.URL, err)
|
|
return
|
|
}
|
|
}
|
|
}
|