feat: set shm-size volume/volumeMounts on kubernetes deployments

This commit is contained in:
Jose Diaz-Gonzalez
2025-03-06 22:59:35 -05:00
parent 888d1d4bf3
commit 65dd4bc1e0
4 changed files with 65 additions and 0 deletions

View File

@@ -113,6 +113,18 @@ type ProcessValues struct {
Replicas int32 `yaml:"replicas"`
Resources ProcessResourcesMap `yaml:"resources,omitempty"`
Web ProcessWeb `yaml:"web,omitempty"`
Volumes []ProcessVolume `yaml:"volumes,omitempty"`
}
type ProcessVolume struct {
Name string `yaml:"name"`
MountPath string `yaml:"mount_path"`
EmptyDir *ProcessVolumeEmptyDir `yaml:"empty_dir,omitempty"`
}
type ProcessVolumeEmptyDir struct {
Medium string `yaml:"medium"`
SizeLimit string `yaml:"size_limit"`
}
type ProcessAnnotations struct {