You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Our current seeded volume implementation currently just gives the user a 500mb volume. This is not scalable. We need a way for users to denote volume size where necessary.
Describe the solution you'd like
Add size as a concept to the ResourceInputs['deployment']. This should use the same
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
We should follow the kubernetes standard here.
Limits and requests for memory are measured in bytes. You can express memory as a plain integer or as a fixed-point integer using one of these suffixes: E, P, T, G, M, K. You can also use the power-of-two equivalents: Ei, Pi, Ti, Gi, Mi, Ki. For example, the following represent roughly the same value:
128974848, 129e6, 129M, 123Mi
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Our current seeded volume implementation currently just gives the user a 500mb volume. This is not scalable. We need a way for users to denote volume size where necessary.
Describe the solution you'd like
Add
size
as a concept to theResourceInputs['deployment']
. This should use the sameDescribe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
We should follow the kubernetes standard here.
The text was updated successfully, but these errors were encountered: