blob: 31b43897cb40e6d6bf9dda09e3d564d3334bcb88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
package generate
//go:generate go run ../generator/generator.go KubeOptions
// KubeOptions are optional options for generating kube YAML files
type KubeOptions struct {
// Service - generate YAML for a Kubernetes _service_ object.
Service *bool
}
//go:generate go run ../generator/generator.go SystemdOptions
// SystemdOptions are optional options for generating systemd files
type SystemdOptions struct {
// Name - use container/pod name instead of its ID.
UseName *bool
// New - create a new container instead of starting a new one.
New *bool
// NoHeader - Removes autogenerated by Podman and timestamp if set to true
NoHeader *bool
// TemplateUnitFile - Create a template unit file that uses the identity specifiers
TemplateUnitFile *bool
// RestartPolicy - systemd restart policy.
RestartPolicy *string
// RestartSec - systemd service restartsec. Configures the time to sleep before restarting a service.
RestartSec *uint
// StartTimeout - time when starting the container.
StartTimeout *uint
// StopTimeout - time when stopping the container.
StopTimeout *uint
// ContainerPrefix - systemd unit name prefix for containers
ContainerPrefix *string
// PodPrefix - systemd unit name prefix for pods
PodPrefix *string
// Separator - systemd unit name separator between name/id and prefix
Separator *string
// Wants - systemd wants list for the container or pods
Wants *[]string
// After - systemd after list for the container or pods
After *[]string
// Requires - systemd requires list for the container or pods
Requires *[]string
// AdditionalEnvVariables - Sets environment variables to a systemd unit file
AdditionalEnvVariables *[]string
}
|