fixup! fix: make verify permission error

Signed-off-by: Mateus Oliveira <msouzaol@redhat.com>
This commit is contained in:
Mateus Oliveira
2023-10-25 08:12:41 -03:00
parent cbf849ab4c
commit 3bc23aeb84
3 changed files with 13 additions and 2 deletions
@@ -186,6 +186,12 @@ spec:
- Continue
- Fail
type: string
waitForReady:
description: WaitForReady ensures command will
be launched when container is Ready instead
of Running.
nullable: true
type: boolean
waitTimeout:
description: WaitTimeout defines the maximum amount
of time Velero should wait for the container
File diff suppressed because one or more lines are too long
@@ -784,6 +784,11 @@ func (in *ExecRestoreHook) DeepCopyInto(out *ExecRestoreHook) {
}
out.ExecTimeout = in.ExecTimeout
out.WaitTimeout = in.WaitTimeout
if in.WaitForReady != nil {
in, out := &in.WaitForReady, &out.WaitForReady
*out = new(bool)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecRestoreHook.