summaryrefslogtreecommitdiff
path: root/wiki/devops/autodeploy.md
diff options
context:
space:
mode:
Diffstat (limited to 'wiki/devops/autodeploy.md')
-rw-r--r--wiki/devops/autodeploy.md38
1 files changed, 0 insertions, 38 deletions
diff --git a/wiki/devops/autodeploy.md b/wiki/devops/autodeploy.md
deleted file mode 100644
index 801c3eb..0000000
--- a/wiki/devops/autodeploy.md
+++ /dev/null
@@ -1,38 +0,0 @@
-# Notes towards automating deployment
-
-This is mostly aimed at the hosted-apps folks; deploying packaged software for
-end users requires a slightly different approach.
-
-## Assumptions
-
-1. You have one or more _services_ to deploy. (If not, what are you doing
-here?)
-
-2. Your services are tracked in _source control_. (If not, go sort that out,
-then come back. No, seriously, _now_.)
-
-3. You will be deploying your services to one or more _environments_. An
-environment is an abstract thing: think “production,” not
-“web01.public.example.com.” (If not, where, exactly, will your service run?)
-
-4. For each service, in each environment, there are one or more _servers_ to
-host the service. These servers are functionally identical. (If not, go pave
-them and rebuild them using Puppet, Chef, CFengine, or, hell, shell scripts
-and duct tape. An environment full of one-offs is the kind of hell I wouldn't
-wish on my worst enemy.)
-
-5. For each service, in each environment, there is a canonical series of steps
-that produce a “deployed” system.
-
------
-
-1. Decide what code should be deployed. (This is a version control activity.)
-2. Get the code onto the fucking server.
-3. Decide what configuration values should be deployed. (This is also a
- version control activity, though possibly not in the same repositories as
- the code.)
-4. Get the configuration onto the fucking server.
-5. Get the code running with the configuration.
-6. Log to fucking syslog.
-7. When the machine reboots, make sure the code comes back running the same
- configuration.