2022-04-25 12:23:57 -05:00

20 lines
505 B
Go

package serverinstall
// Config is the configuration for the Kubernetes installation template.
type Config struct {
Namespace string
ServiceName string
ServerName string
ServerImage string
ServiceAnnotations map[string]string
ImagePullSecret string
ImagePullPolicy string
OpenShift bool
Replicas int32
CPULimit string
MemLimit string
CPURequest string
MemRequest string
StorageRequest string
}