Skip to content

Commit

Permalink
[Buildkite] Do not persist Docker secret in builds (#603)
Browse files Browse the repository at this point in the history
  • Loading branch information
nightah committed Feb 1, 2020
1 parent 275af90 commit 1b478e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .buildkite/hooks/post-command
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ if [[ $BUILDKITE_LABEL =~ ":selenium:" ]] || [[ $BUILDKITE_LABEL =~ ":docker: Bu
fi
fi

if [[ $BUILDKITE_LABEL =~ ":docker: Deploy" ]]; then
docker logout
fi

if [[ $BUILDKITE_BRANCH == "master" ]] || [[ $BUILDKITE_BRANCH =~ ^v.* ]] && [[ $BUILDKITE_PULL_REQUEST == "false" ]]; then
if [[ $BUILDKITE_LABEL == ":docker: Deploy Manifests" ]]; then
echo "--- :docker: Removing tags for deleted branches"
Expand Down
5 changes: 0 additions & 5 deletions cmd/authelia-scripts/cmd_docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ var arch string

var supportedArch = []string{"amd64", "arm32v7", "arm64v8"}
var defaultArch = "amd64"
var buildkite = os.Getenv("BUILDKITE")
var buildkiteQEMU = os.Getenv("BUILDKITE_AGENT_META_DATA_QEMU")
var ciBranch = os.Getenv("BUILDKITE_BRANCH")
var ciPullRequest = os.Getenv("BUILDKITE_PULL_REQUEST")
Expand Down Expand Up @@ -145,10 +144,6 @@ func login(docker *Docker) {
username := os.Getenv("DOCKER_USERNAME")
password := os.Getenv("DOCKER_PASSWORD")

if buildkite == "true" {
return
}

if username == "" {
log.Fatal(errors.New("DOCKER_USERNAME is empty"))
}
Expand Down

0 comments on commit 1b478e8

Please sign in to comment.