-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.go
More file actions
20 lines (18 loc) · 850 Bytes
/
config.go
File metadata and controls
20 lines (18 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package gitreceive
type Config struct {
// k8s service discovery env vars
WorkflowHost string `envconfig:"deis_workflow_service_host"`
WorkflowPort string `envconfig:"deis_workflow_service_port"`
RegistryHost string `envconfig:"deis_registry_service_host"`
RegistryPort string `envconfig:"deis_registry_service_port"`
GitHome string `envconfig:"git_home"`
SSHConnection string `envconfig:"ssh_connection"`
SSHOriginalCommand string `envconfig:"ssh_original_command"`
Repository string `envconfig:"repository"`
SHA string `envconfing:"sha"`
Username string `envconfig:"username"`
App string `envconfing:"app"`
Fingerprint string `envconfing:"fingerprint"`
ImageName string `envconfig:"image_name"`
PodNamespace string `envconfig:"pod_namespace"`
}