diff --git a/README.md b/README.md
index 82ccaf29fd0b39251252fb4581cd4602f3b798c3..f91b748fc192956fbd10b28990b4713b3dbb4ce9 100644
--- a/README.md
+++ b/README.md
@@ -676,6 +676,10 @@ See [exposing Prometheus/Alertmanager/Grafana](docs/exposing-prometheus-alertman
 
 To use an easy to reproduce example, see [minikube.jsonnet](examples/minikube.jsonnet), which uses the minikube setup as demonstrated in [Prerequisites](#prerequisites). Because we would like easy access to our Prometheus, Alertmanager and Grafana UIs, `minikube.jsonnet` exposes the services as NodePort type services.
 
+## Continuous Delivery
+
+Working examples of use with continuous delivery tools are found in examples/continuous-delivery.
+
 ## Troubleshooting
 
 ### Error retrieving kubelet metrics
diff --git a/examples/cd/argocd/README.md b/examples/continuous-delivery/argocd/README.md
similarity index 100%
rename from examples/cd/argocd/README.md
rename to examples/continuous-delivery/argocd/README.md
diff --git a/examples/cd/argocd/application.yaml b/examples/continuous-delivery/argocd/application.yaml
similarity index 85%
rename from examples/cd/argocd/application.yaml
rename to examples/continuous-delivery/argocd/application.yaml
index feaf5cf4439a7d5585d8f620d866ba7b1ed2f1d2..1bc1264e749c606f73583c995f0e10c663d6c744 100644
--- a/examples/cd/argocd/application.yaml
+++ b/examples/continuous-delivery/argocd/application.yaml
@@ -2,7 +2,7 @@
 apiVersion: argoproj.io/v1alpha1
 kind: Application
 metadata:
-  name: monitoring
+  name: kube-prometheus
   namespace: argocd
   annotations:
     recipients.argocd-notifications.argoproj.io: "slack:jenkins"
@@ -17,7 +17,7 @@ spec:
         libs:
           - vendored
       recurse: true
-    path: examples/cd/argocd/kube-prometheus
+    path: examples/continuous-delivery/argocd/kube-prometheus
     repoURL: git@github.com:prometheus-operator/kube-prometheus.git
     targetRevision: HEAD
   syncPolicy:
diff --git a/examples/cd/argocd/appproject.yaml b/examples/continuous-delivery/argocd/appproject.yaml
similarity index 100%
rename from examples/cd/argocd/appproject.yaml
rename to examples/continuous-delivery/argocd/appproject.yaml
diff --git a/examples/cd/argocd/kube-prometheus/argocd-basic.jsonnet b/examples/continuous-delivery/argocd/kube-prometheus/argocd-basic.jsonnet
similarity index 100%
rename from examples/cd/argocd/kube-prometheus/argocd-basic.jsonnet
rename to examples/continuous-delivery/argocd/kube-prometheus/argocd-basic.jsonnet