forked from socketio/socket.io-mongo-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
26 changed files
with
682 additions
and
1,204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
e4a3467b90e35c3dadf461f338838837bf02d2f0 | ||
4187fef119638c2f8453bf4fd3d6da5641e4ffee |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
These files come from https://www.github.com/gynzy/lib-jsonnet/ | ||
Do not update here, but extend the libraries upstream. | ||
Do not update here, but extend the libraries upstream. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,24 @@ | ||
local misc = import 'misc.jsonnet'; | ||
|
||
{ | ||
test: { | ||
project: 'gynzy-test-project', | ||
name: 'test', | ||
zone: 'europe-west4-b', | ||
secret: misc.secret('GCE_NEW_TEST_JSON'), | ||
jobNodeSelectorType: 'preemptible', | ||
}, | ||
clusters: { | ||
test: { | ||
project: 'gynzy-test-project', | ||
name: 'test', | ||
zone: 'europe-west4-b', | ||
secret: '${{ secrets.GCE_NEW_TEST_JSON }}', | ||
}, | ||
|
||
prod: { | ||
project: 'unicorn-985', | ||
name: 'prod-europe-west4', | ||
zone: 'europe-west4', | ||
secret: misc.secret('GCE_JSON'), | ||
jobNodeSelectorType: 'worker', | ||
}, | ||
prod: { | ||
project: 'unicorn-985', | ||
name: 'prod-europe-west4', | ||
zone: 'europe-west4', | ||
secret: '${{ secrets.GCE_JSON }}', | ||
}, | ||
|
||
'gynzy-intern': { | ||
project: 'gynzy-intern', | ||
name: 'gynzy-intern', | ||
zone: 'europe-west4', | ||
secret: misc.secret('CONTINUOUS_DEPLOYMENT_GCE_JSON'), | ||
jobNodeSelectorType: 'worker', | ||
'gynzy-intern': { | ||
project: 'gynzy-intern', | ||
name: 'gynzy-intern', | ||
zone: 'europe-west4', | ||
secret: '${{ secrets.CONTINUOUS_DEPLOYMENT_GCE_JSON }}', | ||
}, | ||
}, | ||
} |
Oops, something went wrong.