summaryrefslogtreecommitdiffstats
path: root/k8s/plugin_testing_blueprints/blueprints/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'k8s/plugin_testing_blueprints/blueprints/README.md')
-rw-r--r--k8s/plugin_testing_blueprints/blueprints/README.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/k8s/plugin_testing_blueprints/blueprints/README.md b/k8s/plugin_testing_blueprints/blueprints/README.md
new file mode 100644
index 0000000..560a51b
--- /dev/null
+++ b/k8s/plugin_testing_blueprints/blueprints/README.md
@@ -0,0 +1,21 @@
+# Blueprints for testing the DCAE Kubernetes plugin
+The blueprints in this directory are designed as test cases for the DCAE
+Kubernetes Cloudify plugin (`k8splugin`). Each blueprint tests a single
+feature, or small set of features, supported by the plugin.
+
+The testing strategy here is simple and not very automated. Deploying a DCAE
+component using a Cloudify blueprint typically has a number of effects (creating a
+Kubernetes deployment, creating a Kubernetes service, populating configuration information
+into Consul, mounting certain volumes on a container, and so forth). For now at least, we use a
+manual process to verify that deployment has had the expected effects:
+- we use `kubectl` to checkthat the expected Kubernetes artifacts are created
+- we look into Consul to see that the appropriateconfiguration information has been populated (including configuration information that comes
+from DMaaP and policy where the blueprint calls for it)
+- we `kubectl exec` into the container to verify that the expected environment variables have been set and the expected volumes are mounted and have the correct content
+
+All of the blueprints deploy the `nginx` image from the public Docker Hub. The blueprints
+will generally deploy the `nginx` Web server so that it serves the default Web page on port 80
+of the container and on a NodePort if the blueprint specifies an external port address.
+Some of the blueprints set up TLS. The expected result is that the appropriate directories
+will be created and will hold the TLS artifacts. We don't actually configure `nginx` to use
+TLS. \ No newline at end of file