diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-09-22 14:39:36 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-09-22 14:44:09 +0200 |
commit | fed1ecf470f85d68527498b029252d26c43f50ef (patch) | |
tree | a61a2ae6bc195d8e56cd1097de22cb0b04cb93b6 /pkg/hooks/1.0.0 | |
parent | 1921a82a91fe9536226092844ebb17c740824b65 (diff) | |
download | podman-fed1ecf470f85d68527498b029252d26c43f50ef.tar.gz podman-fed1ecf470f85d68527498b029252d26c43f50ef.tar.bz2 podman-fed1ecf470f85d68527498b029252d26c43f50ef.zip |
pkg/hooks: support all hooks
Add support for the missing hook types [1]:
- createContainer
- createRuntime
- startContainer
Otherwise, Podman won't inject them into the runtime config (and pass it
on to runc/crun) but error out.
[1] https://github.com/opencontainers/runtime-spec/blob/44341cdd36f6fee6ddd73e602f9e3eca1466052f/runtime.md#lifecycle
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/hooks/1.0.0')
-rw-r--r-- | pkg/hooks/1.0.0/hook.go | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/pkg/hooks/1.0.0/hook.go b/pkg/hooks/1.0.0/hook.go index 77fbab5aa..244e8800f 100644 --- a/pkg/hooks/1.0.0/hook.go +++ b/pkg/hooks/1.0.0/hook.go @@ -67,7 +67,14 @@ func (hook *Hook) Validate(extensionStages []string) (err error) { return errors.New("missing required property: stages") } - validStages := map[string]bool{"prestart": true, "poststart": true, "poststop": true} + validStages := map[string]bool{ + "createContainer": true, + "createRuntime": true, + "prestart": true, + "poststart": true, + "poststop": true, + "startContainer": true, + } for _, stage := range extensionStages { validStages[stage] = true } |