Addressed Algairim's comments
diff --git a/guide/blueprints/custom-entities.md b/guide/blueprints/custom-entities.md
index 23c3679..b9cc0cf 100644
--- a/guide/blueprints/custom-entities.md
+++ b/guide/blueprints/custom-entities.md
@@ -273,13 +273,13 @@
   brooklyn.initializers:
   - type: org.apache.brooklyn.tasks.kubectl.ContainerSensor
     brooklyn.config:
-    image: perl
-    imagePullPolicy: never
-    args:
-      - echo
-      - hello
-    name: test-sensor
-    period: 20s
+      image: perl
+      imagePullPolicy: never
+      args:
+        - echo
+        - hello
+      name: test-sensor
+      period: 20s
  
 {% endhighlight %}
 
diff --git a/guide/blueprints/effectors.md b/guide/blueprints/effectors.md
index 9f94f11..c39b7fd 100644
--- a/guide/blueprints/effectors.md
+++ b/guide/blueprints/effectors.md
@@ -68,7 +68,7 @@
 | keepContainerForDebug | `false` | When set to true, the namespace" and associated resources and services are not destroyed after execution, thus allowing access to the container for in-dept debugging.                                                                |
 | commands              |         | A list of commands to execute on the container.                                                                                                                                                                                       |
 | args                  |         | If the container is declared with an `ENTRYPOINT`, you might want to provide only arguments for the default command configured by the container.                                                                                      |
-| timeout               | `5m`    | How much should Kubernetes wait before considering a job to be failed and mark the container as failed as well.                                                                                                                       |
+| timeout               | `5m`    | How much should Kubernetes wait before considering a job to be failed and mark the container as failed as well. Kubernetes' default is 1m. Apache Brooklyn overrides this.                                                            |
 | workingDir            |         | The directory where the commands should be executed, can be a directory in the container or on a volume attached to it.                                                                                                               |
 | volumeMounts          |         | Configuration to mount a volume into a container.(Same syntax as Kubernetes.)                                                                                                                                                         |
 | volumes               |         | List of directories with data that is accessible across multiple containers. These directories must exists and be configured in the Kubernetes cluster.                                                                               |