diff options
Diffstat (limited to 'libpod/oci.go')
-rw-r--r-- | libpod/oci.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libpod/oci.go b/libpod/oci.go index 152c8e73e..a3e44bcce 100644 --- a/libpod/oci.go +++ b/libpod/oci.go @@ -42,6 +42,12 @@ const ( // NsRunDir is the default directory in which running network namespaces // are stored NsRunDir = "/var/run/netns" + + // JournaldLogging is the string conmon expects to specify journald logging + JournaldLogging = "journald" + + // KubernetesLogging is the string conmon expects when specifying to use the kubernetes logging format + KubernetesLogging = "k8s-file" ) // OCIRuntime represents an OCI-compatible runtime that libpod can call into |