diff options
author | Urvashi Mohnani <umohnani@redhat.com> | 2022-09-01 11:50:19 -0400 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2022-09-06 15:05:50 -0400 |
commit | 48a02aa1c02ddeffd16b3c19ccf9aa23c482e82a (patch) | |
tree | 2f232a99f0f2a3aa2eac5e698322a8e9a757e0e9 /libpod/define | |
parent | 7bb7908efaea76e9497a0c914fb29b0a3cdd5fff (diff) | |
download | podman-48a02aa1c02ddeffd16b3c19ccf9aa23c482e82a.tar.gz podman-48a02aa1c02ddeffd16b3c19ccf9aa23c482e82a.tar.bz2 podman-48a02aa1c02ddeffd16b3c19ccf9aa23c482e82a.zip |
Fix bind-mount-option annotation in gen/play kube
The format used for setting the bind-mount-options annotations
in the kube yaml was incorrect and caused k8s to throw an error
when trying to play the generated kube yaml.
Fix the annotation format to match the rules of k8s.
Signed-off-by: Urvashi Mohnani <umohnani@redhat.com>
Diffstat (limited to 'libpod/define')
-rw-r--r-- | libpod/define/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/define/config.go b/libpod/define/config.go index 0181bd31c..a4597414a 100644 --- a/libpod/define/config.go +++ b/libpod/define/config.go @@ -92,4 +92,4 @@ const ( const RLimitDefaultValue = uint64(1048576) // BindMountPrefix distinguishes its annotations from others -const BindMountPrefix = "bind-mount-options:" +const BindMountPrefix = "bind-mount-options" |