Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/master' into 695b-include-user-i…
Browse files Browse the repository at this point in the history
…n-git-commit
  • Loading branch information
Tamara Kaufler committed Sep 13, 2017
2 parents 366fd04 + 6b1640e commit 9f73679
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 15 deletions.
12 changes: 0 additions & 12 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,6 @@ test:
make all
deployment:
gitsync:
branch: "merge/git-sync"
commands:
- docker login -e '.' -u "$DOCKER_REGISTRY_USER" -p "$DOCKER_REGISTRY_PASSWORD" quay.io
- |
IMAGE_TAG="quay.io/weaveworks/flux:$(./docker/image-tag)"
echo Pushing $IMAGE_TAG
docker push "$IMAGE_TAG"
# Assumes that both images change in lock-step (they share a lot of code, so ..)
IMAGE_TAG="quay.io/weaveworks/flux-service:$(./docker/image-tag)"
echo Pushing $IMAGE_TAG
docker push "$IMAGE_TAG"
push:
branch: master
commands:
Expand Down
2 changes: 1 addition & 1 deletion deploy/flux-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
# There are no ":latest" images for flux. Find the most recent
# release or image version at https://quay.io/weaveworks/flux
# and replace the tag here.
image: quay.io/weaveworks/flux:1.0.0-beta
image: quay.io/weaveworks/flux:1.0.0
imagePullPolicy: IfNotPresent
ports:
- containerPort: 3030 # informational
Expand Down
2 changes: 1 addition & 1 deletion http/daemon/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ func (s HTTPServer) GetPublicSSHKey(w http.ResponseWriter, r *http.Request) {
transport.ErrorResponse(w, r, err)
return
}
transport.JSONResponse(w, r, res)
transport.JSONResponse(w, r, res.PublicSSHKey)
}

func (s HTTPServer) RegeneratePublicSSHKey(w http.ResponseWriter, r *http.Request) {
Expand Down
3 changes: 2 additions & 1 deletion internal_docs/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ This process will create a new tagged release of flux, push dockerfiles and uplo
## Release process

1. Alter and commit the /CHANGELOG.md file to signify what has changed in this version.
2. Create a new release: https://github.com/weaveworks/flux/releases/new
2. Ensure example deployment is up-to-date. (Check image tags)
3. Create a new release: https://github.com/weaveworks/flux/releases/new
4. Fill in the version number for the name and tag. The version number should conform to [semver](semver.org); i.e., look like `1.2.3` (NB: no leading 'v'); optionally with a pre-release suffix, e.g., `1.0.0-beta`
5. Fill in the Description field (possibly a copy paste from the CHANGELOG.md)
6. Click "Publish release"
Expand Down

0 comments on commit 9f73679

Please sign in to comment.