-
Notifications
You must be signed in to change notification settings - Fork 631
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP]: Add HostConfig to nerdctl inspect
response
#3812
base: main
Are you sure you want to change the base?
[WIP]: Add HostConfig to nerdctl inspect
response
#3812
Conversation
Signed-off-by: Arjun Raja Yogidas <[email protected]>
pkg/labels/labels.go
Outdated
@@ -101,6 +101,9 @@ const ( | |||
// (like "nerdctl/default-network=true" or "nerdctl/default-network=false") | |||
NerdctlDefaultNetwork = Prefix + "default-network" | |||
|
|||
// LogConfig defines the loggin configuration passed to the container |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo: loggin
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The LogURI
label can be now removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Signed-off-by: Arjun Raja Yogidas <[email protected]>
f57dca7
to
cfdf044
Compare
CPUSetCPUs = Prefix + "cpuset-cpus" | ||
|
||
// CPUSetMems to check if the --cpuset-mems is specified | ||
CPUSetMems = Prefix + "cpuset-mems" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aren't these present in OCI config?
nerdctl inspect
currently doesn't report HostConfig details in its response.Attempting to add this PR as a starting point, aim is to get the
dockercompat
response closer to the docker inspect response schema