Skip to content

Commit

Permalink
Merge pull request #48 from PDOK/delay
Browse files Browse the repository at this point in the history
fix: bump shutdown delay
  • Loading branch information
rkettelerij authored Feb 11, 2025
2 parents 8f0e643 + d817076 commit ed403b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/controller/ogcapi_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ func (r *OGCAPIReconciler) mutateDeployment(ogcAPI *pdoknlv1alpha1.OGCAPI, deplo
Env: []corev1.EnvVar{
{Name: configFileEnvVar, Value: srvDir + "/" + configName + "/" + configFileName},
{Name: debugPortEnvVar, Value: strconv.Itoa(debugPortNr)},
{Name: shutdownDelayEnvVar, Value: strconv.Itoa(15)},
{Name: shutdownDelayEnvVar, Value: strconv.Itoa(30)},
},
Resources: corev1.ResourceRequirements{
Limits: corev1.ResourceList{
Expand Down

0 comments on commit ed403b3

Please sign in to comment.