Merge pull request #296 from robertstettner/added-godotenv-for-non-base
Added env-file with godotenv to all non-base implementations of plugin
This commit is contained in:
		
						commit
						e4056d8499
					
				| @ -5,9 +5,16 @@ import ( | ||||
| 	"os" | ||||
| 	"os/exec" | ||||
| 	"strings" | ||||
| 
 | ||||
| 	"github.com/joho/godotenv" | ||||
| ) | ||||
| 
 | ||||
| func main() { | ||||
| 	// Load env-file if it exists first
 | ||||
| 	if env := os.Getenv("PLUGIN_ENV_FILE"); env != "" { | ||||
| 		godotenv.Load(env) | ||||
| 	} | ||||
| 
 | ||||
| 	var ( | ||||
| 		repo     = getenv("PLUGIN_REPO") | ||||
| 		registry = getenv("PLUGIN_REGISTRY") | ||||
|  | ||||
| @ -10,6 +10,8 @@ import ( | ||||
| 	"strconv" | ||||
| 	"strings" | ||||
| 
 | ||||
| 	"github.com/joho/godotenv" | ||||
| 
 | ||||
| 	"github.com/aws/aws-sdk-go/aws" | ||||
| 	"github.com/aws/aws-sdk-go/aws/awserr" | ||||
| 	"github.com/aws/aws-sdk-go/aws/credentials/stscreds" | ||||
| @ -20,6 +22,11 @@ import ( | ||||
| const defaultRegion = "us-east-1" | ||||
| 
 | ||||
| func main() { | ||||
| 	// Load env-file if it exists first
 | ||||
| 	if env := os.Getenv("PLUGIN_ENV_FILE"); env != "" { | ||||
| 		godotenv.Load(env) | ||||
| 	} | ||||
| 
 | ||||
| 	var ( | ||||
| 		repo             = getenv("PLUGIN_REPO") | ||||
| 		registry         = getenv("PLUGIN_REGISTRY") | ||||
|  | ||||
| @ -6,12 +6,19 @@ import ( | ||||
| 	"os/exec" | ||||
| 	"path" | ||||
| 	"strings" | ||||
| 
 | ||||
| 	"github.com/joho/godotenv" | ||||
| ) | ||||
| 
 | ||||
| // gcr default username
 | ||||
| const username = "_json_key" | ||||
| 
 | ||||
| func main() { | ||||
| 	// Load env-file if it exists first
 | ||||
| 	if env := os.Getenv("PLUGIN_ENV_FILE"); env != "" { | ||||
| 		godotenv.Load(env) | ||||
| 	} | ||||
| 
 | ||||
| 	var ( | ||||
| 		repo     = getenv("PLUGIN_REPO") | ||||
| 		registry = getenv("PLUGIN_REGISTRY") | ||||
|  | ||||
| @ -4,9 +4,16 @@ import ( | ||||
| 	"os" | ||||
| 	"os/exec" | ||||
| 	"path" | ||||
| 
 | ||||
| 	"github.com/joho/godotenv" | ||||
| ) | ||||
| 
 | ||||
| func main() { | ||||
| 	// Load env-file if it exists first
 | ||||
| 	if env := os.Getenv("PLUGIN_ENV_FILE"); env != "" { | ||||
| 		godotenv.Load(env) | ||||
| 	} | ||||
| 
 | ||||
| 	var ( | ||||
| 		registry = "registry.heroku.com" | ||||
| 		process  = getenv("PLUGIN_PROCESS_TYPE") | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Brad Rydzewski
						Brad Rydzewski