Skip to content

Commit

Permalink
Release v0.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
janeczku committed Apr 27, 2016
1 parent 0c7e98a commit 9e3070e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ MAINTAINER Jan Broer <[email protected]>

RUN apk add --no-cache ca-certificates

ENV LETSENCRYPT_RELEASE v0.2.8
ENV LETSENCRYPT_RELEASE v0.2.9

ADD https://github.com/janeczku/rancher-letsencrypt/releases/download/${LETSENCRYPT_RELEASE}/rancher-letsencrypt-linux-amd64.tar.gz /tmp/rancher-letsencrypt.tar.gz

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ ci-dist: ci-compile dist-dir
$(eval FILES := $(shell ls build))
@for f in $(FILES); do \
(cd $(shell pwd)/build/$$f && tar -cvzf ../../dist/$$f.tar.gz *); \
(cd $(shell pwd)/dist && shasum -a 256 $$f.tar.gz > $$f.sha256); \
(cd $(shell pwd)/dist && md5sum $$f.tar.gz > $$f.md5); \
(cd $(shell pwd)/dist && shasum -a 256 $$f.tar.gz > $$f.tar.gz.sha256); \
(cd $(shell pwd)/dist && md5sum $$f.tar.gz > $$f.tar.gz.md5); \
echo $$f; \
done
@cp -r $(shell pwd)/dist/* $(CIRCLE_ARTIFACTS)
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ A [Rancher](http://rancher.com/rancher/) service that obtains free SSL/TLS certi
#### Requirements
* Rancher Server >= v0.63.0
* Existing account with one of the supported DNS providers:
* `AWS Route 53`
* `CloudFlare`
* `DigitalOcean`
* `AWS Route 53`
* `DNSimple`
* `Dyn`
* `Namecheap`

### How to use

Expand Down Expand Up @@ -56,6 +57,10 @@ Replace `<HOSTED_ZONE_ID>` with the ID of the hosted zone that encloses the doma
}
```

#### Namecheap

Namecheap requires all IP addresses from which you call it's API to be whitelisted. Make sure to grant API access to the host running `rancher-letsencrypt` by navigating to "Manage Profile" => "API Access" in your Namecheap account.

### Building the image

`make build && make image`
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.2.8
v0.2.9
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ deployment:
commands:
- make ci-release
- curl --data "docker_tag=latest" -X POST ${DOCKER_HUB_URI}/${DOCKER_HUB_TOKEN}/
- sleep 10
- sleep 30
- curl --data "source_type=Tag&source_name=${CIRCLE_TAG}" -X POST ${DOCKER_HUB_URI}/${DOCKER_HUB_TOKEN}/
- echo `git name-rev --tags --name-only $(git rev-parse HEAD)`
- echo tag ${CIRCLE_TAG}

0 comments on commit 9e3070e

Please sign in to comment.