Hi,

For what you described, I wouldn't even use Docker (not trying to get into 
flame wars, just my opinion that not using it will keep your setup even 
simpler)

Some time ago I wrote this

https://github.com/fmpwizard/mrwilson/tree/master/ansible

it's a complete ansible set of playbooks, roles, etc that take a new fresh 
server running Fedora (so bare that it doesn't even have python) to a fully 
running server that has systemd setup for the service I'm deploying, sets 
some SELinux things, opens/closes ports using a firewall, etc.

It assumes a few things:

1. you compile your go program locally (or from a ci server where you run 
the ansible playbook)
2. your user can already ssh into the server

At work we use something similar, where our ci server running jenkins has a 
job that once triggered, it calls ansible, copies our files to the servers 
and then restarts the services

Hope it helps.

Diego




On Tuesday, July 25, 2017 at 1:45:00 PM UTC-4, Sankar wrote:
>
> Hi
>
> I have a golang REST api server. I cross-compile the monolithic golang 
> binary with GOOS=linux GOARCH=amd64 from my macbook (developer machine) and 
> then scp the binary to a ec2 vm. I have written a systemd service file to 
> manually bring down the service before the scp and bring up after the scp.
>
> I use RDS for database and run any migrations that are needed, after the 
> scp and before the service restart.
>
> Now I have reached a stage where I want the deployments to be continuous 
> and preferably from my CI system.  I have already written a Dockerfile 
> which is used in the CI system for testing. I do not want to use kubernetes 
> or anything complex at the moment because I am going to have only one 
> instance of my monolithic binary and also a free tier vm is sufficient for 
> my current needs.
>
> I am looking for tools / processes / best practices that people are 
> following to automate deploy of golang binaries on EC2. I prefer to use a 
> cloud-vendor-neutral-tool (such as terraform or saltstack) instead of 
> cloudformation. Can you share your golang production deploy experience ?
>
> Thanks a lot.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to