diff --git a/README.md b/README.md
index eb0e370965b8b9341c2a5b2237bdf94bae6ea86c..1c30638f4f8d0760f40cde816321f8d90e260496 100644
--- a/README.md
+++ b/README.md
@@ -58,8 +58,12 @@ groups:
       text: "Ensure that the --allow-privileged argument is set (Scored)"
       audit: "ps -ef | grep kube-apiserver | grep -v grep"
       tests:
+      bin_op: or
+      test_items:
       - flag: "--allow-privileged"
         set: true
+      - flag: "--some-other-flag"
+        set: false
       remediation: "Edit the /etc/kubernetes/config file on the master node and set the KUBE_ALLOW_PRIV parameter to '--allow-privileged=false'"
       scored: true
 ```
diff --git a/cfg/master.yaml b/cfg/master.yaml
index dd0d07adbdd884f135f4376ed1806c0b53e4bed4..c21a8f81e1df3005a66f83dd9168655b4e197b50 100644
--- a/cfg/master.yaml
+++ b/cfg/master.yaml
@@ -641,17 +641,22 @@ groups:
       remediation: "Run the below command (based on the file location on your system) on the master node. 
               \nFor example, chown root:root /etc/sysconfig/flanneld"
       scored: true
-
-      # TODO: Resolve issue get pipeline to work.
-      #  - id: 1.4.11
-      #  - text: "Ensure that the etcd data directory permissions are set to 700 or more restrictive (Scored)"
-      #  - audit: "ps -ef | grep etcd | grep -v grep | sed 's,.*--data-dir=\\(.*\\)\\s.*,\\1,' | xargs stat -c %a"
-      #  - tests:
-      #  -   test_items:
-      #  -     - flag: "700"
-      #  -       set: true
-      #  - remediation: ""
-      #  - scored: true
+      
+    - id: 1.4.11
+      text: "Ensure that the etcd data directory permissions are set to 700 or more restrictive (Scored)"
+      # audit: ps -ef | grep etcd | grep -v grep | sed 's,.*--data-dir=\(.*\)\s*.*,\1,' | xargs stat -c %a
+      audit: "ps -ef | grep etcd | grep -v grep | grep -o data-dir=.* | cut -d= -f2 | xargs stat -c %a"
+      # audit: xargs stat -c %a /etc/etcd
+      tests:
+        test_items:
+        - flag: "700"
+          set: true
+      remediation: "On the etcd server node, get the etcd data directory, passed as an argument --data-dir ,
+              from the below command:\n
+              ps -ef | grep etcd\n
+              Run the below command (based on the etcd data directory found above). For example,\n
+              chmod 700 /var/lib/etcd/default.etcd"
+      scored: true
 
 - id: 1.5
   text: "etcd"
diff --git a/cmd/root.go b/cmd/root.go
index 3ca70a80e42643e6d33df554aab3572896624ea0..2a02906c3d7f3fa32897a959a9ca0d6c2abff4b7 100644
--- a/cmd/root.go
+++ b/cmd/root.go
@@ -58,7 +58,7 @@ func Execute() {
 func init() {
 	cobra.OnInitialize(initConfig)
 
-	RootCmd.PersistentFlags().BoolVar(&jsonFmt, "json", false, "Output results as JSON")
+	RootCmd.PersistentFlags().BoolVar(&jsonFmt, "json", false, "Prints the results as JSON")
 	RootCmd.PersistentFlags().StringVarP(&checkList,
 		"check",
 		"c",