Marco Franssen
Marco Franssen
We might also want to have a look at cosign which has a neat way of using KMS keys including Hashivault Transit engine.
`/usr/bin/env sh` or `/usr/bin/env bash` is the recommended best practice when writing bash scripts. https://unix.stackexchange.com/questions/29608/why-is-it-better-to-use-usr-bin-env-name-instead-of-path-to-name-as-my If we don't use bash specific functions `sh` is preferred as well. Imagine developers having...
@directionless I use the `docker trust cli` in most cases, which has less features, but is simpler. Also here a blog I wrote on `docker content trust` which uses notary...
@justincormack @thaJeztah
I have also tried to use the #1523 branch by using a `replace` statement in the Go.mod This is having the same issue as the master branch, which was about...
How to reproduce: ```bash go mod init github.com/somenotary/integration ``` **service_test.go** ```go service_test.go package main import ( "context" "net/http/httptest" "testing" "github.com/theupdateframework/notary" "github.com/theupdateframework/notary/cryptoservice" "github.com/theupdateframework/notary/server" "github.com/theupdateframework/notary/server/storage" "github.com/theupdateframework/notary/trustmanager" ) func fullTestServer(t *testing.T) *httptest.Server {...
I'm pretty sure it is not related to CoreDNS. I'm facing the issue in Docker-for-Mac, Barebone rootless docker on ubuntu as well when running in a k8s cluster. These do...
Google works fine, Github is having issues on AAAA (ipv6). Or when the `type` is not provided. ```bash $ docker run --rm -it alpine sh / # nslookup -type=A google.com...
Indeed responds with a `0` exitcode. However musl is already at 1.2.2 in latest `alpine`. ```bash $ docker run --rm -it alpine sh / # nslookup github.com ; echo $?...
Same issue here... Node: **4.2.2** Karma **0.13.15** Karma-phantomjs-launcher **0.2.1** phantomjs **1.9.18** This is how we run it ``` bash karma start "web/js2/test/karma.conf.js" --no-colors --single-run --log-level info --reporters dots 19 11...