Skip to content

Commit

Permalink
Sync default properties with upstream (#86)
Browse files Browse the repository at this point in the history
Removed some defaults to be closer to upstream configuration

CHE_PREDEFINED_STACKS_RELOAD__ON__START - not used in Che 7
CHE_WORKSPACE_AUTO_START - wrong parameter, has to be CHE_WORKSPACE_AUTO__START, upstream default value - true
CHE_INFRA_KUBERNETES_WORKSPACE__UNRECOVERABLE__EVENTS - upstream value FailedMount,FailedScheduling,MountVolume.SetUp failed,Failed to pull image,FailedCreate
CHE_LIMITS_WORKSPACE_IDLE_TIMEOUT - upstream value 1800000
CHE_INFRA_KUBERNETES_SERVICE__ACCOUNT__NAME - Not changed since it has NULL value in upstream. To remove it we need to investigate if it's safe to do or not.
  • Loading branch information
skabashnyuk authored Oct 4, 2019
1 parent c8a1d8f commit 2ba0cb1
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions pkg/deploy/che_configmap.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,7 @@ type CheConfigMap struct {
func GetCustomConfigMapData() (cheEnv map[string]string) {

cheEnv = map[string]string{
"CHE_PREDEFINED_STACKS_RELOAD__ON__START": "true",
"CHE_INFRA_KUBERNETES_SERVICE__ACCOUNT__NAME": "che-workspace",
"CHE_WORKSPACE_AUTO_START": "true",
"CHE_INFRA_KUBERNETES_WORKSPACE__UNRECOVERABLE__EVENTS": "FailedMount,FailedScheduling,MountVolume.SetUp failed,Failed to pull image",
"CHE_LIMITS_WORKSPACE_IDLE_TIMEOUT": "-1",
}
return cheEnv

Expand Down

0 comments on commit 2ba0cb1

Please sign in to comment.