mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-05-31 03:56:41 +00:00
9 lines
284 B
Go
9 lines
284 B
Go
package kubernetes
|
|
|
|
type Resources struct {
|
|
CpuLimit string `yaml:"cpu-limit" default:"750m"`
|
|
MemoryLimit string `yaml:"memory-limit" default:"1Gi"`
|
|
CpuRequests string `yaml:"cpu-requests" default:"50m"`
|
|
MemoryRequests string `yaml:"memory-requests" default:"50Mi"`
|
|
}
|