Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dejanzele committed May 15, 2024
1 parent 0d04467 commit 6d1eadb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/simulator/resources/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,14 @@ const (
LabelValueFakePod = "fake-pod"
LabelSelectorFakePod = LabelKeyApp + "=" + LabelValueFakePod
)

var (
// EnvVarCount is the number of envvars in a pod spec.
EnvVarCount = 5
// MaxEnvVarSize is the maximum size of an env var in bytes.
MaxEnvVarSize = 10 * 1024
// EnvVarsType is the type of env vars that should be used when creating fake pods (nano, micro, xsmall...).
EnvVarsType = newEnvVars(EnvVarCount, 2*1024, "SOME_ENV_VAR_MEDIUM")
EnvVarsType = newEnvVars(EnvVarCount, 2*1024, "SOME_ENV_VAR_MEDIUM")
)

func SetDefaultEnvVarsType(envVarType string) {
Expand Down

0 comments on commit 6d1eadb

Please sign in to comment.