From 30495ceb3d7670524a7443adec14c4bc8631e686 Mon Sep 17 00:00:00 2001 From: ProTip Date: Thu, 23 Aug 2018 18:25:13 -0500 Subject: [PATCH] Add README to all exhibits. --- README.md | 2 +- basic/README.md | 15 +++++++++++++++ basic/docker-compose.yml | 2 -- ldap/README.md | 14 ++++++++++++++ mysql/README.md | 15 +++++++++++++++ 5 files changed, 45 insertions(+), 3 deletions(-) create mode 100644 basic/README.md create mode 100644 ldap/README.md create mode 100644 mysql/README.md diff --git a/README.md b/README.md index b3b63f7..e98c6fa 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ as well as a reference and starting place for your own deployments. * [oracle](./oracle) ### Kubernetes -* [kubernetes](./kubernetes) +* `Pro` [kubernetes](./kubernetes) ### Plugin Bundling * [cloud](./cloud) diff --git a/basic/README.md b/basic/README.md new file mode 100644 index 0000000..0f183e5 --- /dev/null +++ b/basic/README.md @@ -0,0 +1,15 @@ +Basic Exhibit +============= + +Quickest way to get up and running with a persistent data volume. + + +### Startup +``` +docker-compose up +``` + +### Teardown +``` +docker-compose down -v +``` \ No newline at end of file diff --git a/basic/docker-compose.yml b/basic/docker-compose.yml index 79bc3eb..a12d21a 100644 --- a/basic/docker-compose.yml +++ b/basic/docker-compose.yml @@ -4,8 +4,6 @@ services: rundeck: image: ${RUNDECK_IMAGE:-rundeck/rundeck:SNAPSHOT} tty: true - environment: - RUNDECK_PLUGIN_CLUSTER_AUTOTAKEOVER_ENABLED: "true" volumes: - data:/home/rundeck/server/data - ${RUNDECK_LICENSE_FILE:-/dev/null}:/home/rundeck/etc/rundeckpro-license.key diff --git a/ldap/README.md b/ldap/README.md new file mode 100644 index 0000000..80ab8f2 --- /dev/null +++ b/ldap/README.md @@ -0,0 +1,14 @@ +LDAP Exhibit +============= + +This setup configures Rundeck to authenticate users against LDAP. + +### Startup +``` +docker-compose up +``` + +### Teardown +``` +docker-compose down -v +``` \ No newline at end of file diff --git a/mysql/README.md b/mysql/README.md new file mode 100644 index 0000000..bec3e9f --- /dev/null +++ b/mysql/README.md @@ -0,0 +1,15 @@ +MySQL Exhibit +============= + +Demonstrates configuring Rundeck to use MySQL as an external database. + + +### Startup +``` +docker-compose up +``` + +### Teardown +``` +docker-compose down -v +``` \ No newline at end of file