Skip to content

Commit

Permalink
Add gomplate (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
osterman committed Nov 9, 2017
1 parent 546de89 commit 219ecf5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,11 @@ RUN pip install ansible==${ANSIBLE_VERSION} boto Jinja2==${JINJA2_VERSION} --upg
rm -rf /root/.cache && \
find / -type f -regex '.*\.py[co]' -delete

# Install gomplate
ENV GOMPLATE_VERSION 2.2.0
RUN curl --fail -sSL -o /usr/local/bin/gomplate https://github.com/hairyhenderson/gomplate/releases/download/v${GOMPLATE_VERSION}/gomplate_linux-amd64-slim \
&& chmod +x /usr/local/bin/gomplate

ENV BOOTSTRAP=true

# Where to store state
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,3 @@ install:

run:
@geodesic

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ At its core, Geodesic is a framework for provisioning cloud infrastructure and t
* [`ansible`](http://docs.ansible.com/ansible/latest/index.html) Ansible is an IT automation tool. It can configure systems, deploy software, and orchestrate more advanced IT tasks.
* [`s3fs`](https://github.com/s3fs-fuse/s3fs-fuse) for mounting encrypted S3 buckets that store cluster configurations and secrets
* [`gcloud`, `gsutil`](https://cloud.google.com/sdk/) for integration with Google Cloud (e.g. GKE, GCE, Google Storage)
* [`gomplate`](https://github.com/hairyhenderson/gomplate/) for template rendering configuraton files using the GoLang template engine. Supports lots of local and remote datasources.

## Demo

Expand Down

0 comments on commit 219ecf5

Please sign in to comment.