-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Allow API to specify size and inode quota #11991
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: rhatdan The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Looks like you have a vendor problem @rhatdan |
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.
Can you also add this option to the podman run/create cli? This would allow for easy testing.
libpod/container_config.go
Outdated
@@ -153,6 +153,8 @@ type ContainerRootFSConfig struct { | |||
Secrets []*ContainerSecret `json:"secrets,omitempty"` | |||
// SecretPath is the secrets location in storage | |||
SecretsPath string `json:"secretsPath"` | |||
// StorageOpts to be used when creating rootfs | |||
StorageOpts []string `json:"storageOpts"` |
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.
I think this should be a map[string]string
given the c/storage accepts this, to avoid converting the array every time.
0690213
to
1af8243
Compare
Fixes: containers#11016 [NO NEW TESTS NEEDED] We have no easy way to tests this in CI/CD systems. Requires quota to be setup on directories to work. Fixes: containers#11016 Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
@Luap99 PTAL |
LGTM |
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.
/lgtm
[NO NEW TESTS NEEDED] see containers#11991 Signed-off-by: Riyad Preukschas <riyad@informatik.uni-bremen.de>
Fixes: #11016
[NO NEW TESTS NEEDED] We have no easy way to tests this in
CI/CD systems. Requires quota to be setup on directories to work.
Fixes: #11016
Signed-off-by: Daniel J Walsh dwalsh@redhat.com
What this PR does / why we need it:
How to verify it
Which issue(s) this PR fixes:
Special notes for your reviewer: