Skip to content

Commit

Permalink
chore: update env var order
Browse files Browse the repository at this point in the history
Signed-off-by: shil <[email protected]>
  • Loading branch information
shil committed Nov 25, 2024
1 parent 3863ef4 commit 8602e17
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions api/apps/v1alpha1/nemo_datastore_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,10 +191,6 @@ func (n *NemoDatastore) GetStandardEnv() []corev1.EnvVar {
},
},
},
{
Name: "DATABASE_URL",
Value: n.Spec.DataStoreParams.DatabaseURL,
},
{
Name: "DB_PASSWORD",
ValueFrom: &corev1.EnvVarSource{
Expand All @@ -206,6 +202,10 @@ func (n *NemoDatastore) GetStandardEnv() []corev1.EnvVar {
},
},
},
{
Name: "DATABASE_URL",
Value: n.Spec.DataStoreParams.DatabaseURL,
},
}
return envVars
}
Expand Down

0 comments on commit 8602e17

Please sign in to comment.