d2e2dc7
workflow-dev-e2e: use GINKGO_NODES from local env if exists6309f5c
workflow-dev: store builder ssh private keys in secret2eb4750
(all): replace values that change with each release with template valuesc0bad28
ci.sh: add uninstall step in teardownc3ffd5a
_scripts: add CHANGELOG.md and generator script
This file contains hidden or 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
$ kd logs -f deis-database-a9p62 | |
The files belonging to this database system will be owned by user "postgres". | |
This user must also own the server process. | |
The database cluster will be initialized with locale "en_US.utf8". | |
The default database encoding has accordingly been set to "UTF8". | |
The default text search configuration will be set to "english". | |
Data page checksums are disabled. |
This file contains hidden or 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
config:set BEFORE (elapsed seconds) | config:set AFTER | % Slower | deis create testapp | |
---|---|---|---|---|
38 | 39 | 2.63 | time git push deis master | |
23 | 36 | 56.52 | time deis config:set POWERED_BY=Aliens | |
17 | 33 | 94.12 | time deis config:set POWERED_BY=Rockets | |
22 | 33 | 50.00 | time deis config:set FOO=bar | |
27 | 43 | 59.26 | time deis config:unset FOO | |
20 | 32 | 60.00 | deis destroy -a testapp --confirm=testapp | |
17 | 34 | 100.00 | ||
18 | 32 | 77.78 | ||
28 | 44 | 57.14 |
This file contains hidden or 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
deisctl config builder set image=deisci/builder:v1.8.150 | |
deisctl config cache set image=deisci/cache:v1.8.150 | |
deisctl config controller set image=deisci/controller:v1.8.150 | |
deisctl config database set image=deisci/database:v1.8.150 | |
deisctl config logger set image=deisci/logger:v1.8.150 | |
deisctl config logspout set image=deisci/logspout:v1.8.150 | |
deisctl config publisher set image=deisci/publisher:v1.8.150 | |
deisctl config registry set image=deisci/registry:v1.8.150 | |
deisctl config router set image=deisci/router:v1.8.150 | |
deisctl config store-admin set image=deisci/store-admin:v1.8.150 |
This file contains hidden or 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
ul 08 01:25:32 ip-10-21-1-40.us-west-2.compute.internal systemd[1]: deis-controller.service failed. | |
Jul 08 01:25:37 ip-10-21-1-40.us-west-2.compute.internal systemd[1]: deis-controller.service holdoff time over, scheduling rest | |
Jul 08 01:25:37 ip-10-21-1-40.us-west-2.compute.internal systemd[1]: Starting deis-controller... | |
Jul 08 01:25:39 ip-10-21-1-40.us-west-2.compute.internal sh[9360]: jenkins-test-ec2-1739: Pulling from deisci/controller | |
Jul 08 01:25:39 ip-10-21-1-40.us-west-2.compute.internal sh[9360]: 68397a5a86ce: Pulling fs layer | |
Jul 08 01:25:39 ip-10-21-1-40.us-west-2.compute.internal sh[9360]: 6a2b18067988: Pulling fs layer | |
Jul 08 01:25:39 ip-10-21-1-40.us-west-2.compute.internal sh[9360]: f643764c983a: Pulling fs layer | |
Jul 08 01:25:39 ip-10-21-1-40.us-west-2.compute.internal sh[9360]: c99bc52808f6: Pulling fs layer | |
Jul 08 01:25:39 ip-10-21-1-40.us-west-2.compute.internal sh[9360]: c758a60a5b65: Pulling fs layer | |
Jul 08 01:25:39 ip-10-21-1-40.us-west-2.compute.internal sh[9360]: 4bb2ae325a49: Pulling |
This file contains hidden or 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
func TestDocopt(t *testing.T) { | |
doc := `Usage: prog [-v] A | |
Options: -v Be verbose.` | |
if v, err := Parse(doc, []string{"arg"}, true, "", false, false); reflect.DeepEqual(v, map[string]interface{}{"-v": false, "A": "arg"}) != true { | |
t.Error(err) | |
} | |
if v, err := Parse(doc, []string{"-v", "arg"}, true, "", false, false); reflect.DeepEqual(v, map[string]interface{}{"-v": true, "A": "arg"}) != true { | |
t.Error(err) | |
} |
This file contains hidden or 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
#!/bin/sh | |
PID=$(docker inspect --format="{{ .State.Pid }}" $1) | |
nsenter --pid --uts --mount --ipc --net --target $PID |
This file contains hidden or 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
#!/bin/sh | |
# Save this file as ".git/hooks/pre-commit" in your | |
# git repository and set it to executable. | |
# | |
# To use the "go vet" command: | |
# $ go get -v code.google.com/p/go.tools/cmd/vet | |
# To use the "golint" command: | |
# $ go get -v github.com/golang/lint/golint |
None of this is really necessary now that the Docker team is releasing official Mac OS X binary builds. Please see moby/moby#3337 for details.