Skip to content

Commit

Permalink
adds support for GCP HA environments with gcs recording storage, fire…
Browse files Browse the repository at this point in the history
…store-backed events, and firestore backend storage
  • Loading branch information
joshdurbin committed Sep 5, 2019
1 parent 100a9d1 commit d346f2b
Show file tree
Hide file tree
Showing 317 changed files with 77,746 additions and 2,005 deletions.
204 changes: 169 additions & 35 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
# name = "github.com/x/y"
# version = "2.4.0"


ignored = ["github.com/Sirupsen/logrus"]

[prune]
Expand Down Expand Up @@ -184,7 +183,7 @@ ignored = ["github.com/Sirupsen/logrus"]

[[constraint]]
name = "github.com/golang/protobuf"
version = "=v1.1.0"
version = "=v1.3.1"

[[constraint]]
name = "github.com/Microsoft/go-winio"
Expand All @@ -194,3 +193,6 @@ ignored = ["github.com/Sirupsen/logrus"]
name = "github.com/jonboulle/clockwork"
branch = "master"

[[constraint]]
name = "cloud.google.com/go"
version = "=v0.41.0"
7 changes: 7 additions & 0 deletions constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ const (
// ComponentKeyGen is the public/private keypair generator.
ComponentKeyGen = "keygen"

// ComponentFirestore represents firestore clients
ComponentFirestore = "firestore"

// ComponentSession is an active session.
ComponentSession = "session"

Expand Down Expand Up @@ -311,6 +314,10 @@ const (
// storage
SchemeS3 = "s3"

// SchemeGCS is GCS file scheme, means upload or download to GCS like object
// storage
SchemeGCS = "gs"

// Region is AWS region parameter
Region = "region"

Expand Down
Loading

0 comments on commit d346f2b

Please sign in to comment.