Skip to content

Commit

Permalink
Log the MULTIPLY feature
Browse files Browse the repository at this point in the history
Signed-off-by: Ben <[email protected]>
  • Loading branch information
slashben committed Aug 18, 2024
1 parent e681253 commit 34fc568
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ func main() {
}()
}

if m := os.Getenv("MULTIPLY"); m == "true" {
logger.L().Info("MULTIPLY environment variable is true. Multiplying feature enabled - this is a feature for testing purposes only")
}

// Create clients
k8sClient := k8sinterface.NewKubernetesApi()
storageClient, err := storage.CreateStorage(clusterData.Namespace)
Expand Down

0 comments on commit 34fc568

Please sign in to comment.