diff --git a/Helm/Helm-Commands b/Helm/Helm-Commands
index f304dd38b1ea682d46dc50f33c74c91b7cf5b19b..a551419d11da6f54b6935924e119dbddd8d5d138 100644
--- a/Helm/Helm-Commands
+++ b/Helm/Helm-Commands
@@ -49,8 +49,12 @@ helm install RELEASE_NAME ./CHART_NAME/ -n NAMESPACE_NAME -f FILE_NAME.yaml --cr
 helm install RELEASE_NAME REPOSITORY_NAME/CHART_NAME
 helm install RELEASE_NAME REPOSITORY_NAME/CHART_NAME -n NAMESPACE_NAME
 helm install RELEASE_NAME REPOSITORY_NAME/CHART_NAME -n NAMESPACE_NAME --set replicaCount=NO --kube-context=CONTEXT_NAME
+helm install RELEASE_NAME REPOSITORY_NAME/CHART_NAME --namespace NAMESPACE_NAME
 helm install RELEASE_NAME REPOSITORY_NAME/CHART_NAME --namespace NAMESPACE_NAME -f FILE_NAME.yaml
 
+[Inspect]                                                                      Helm v2 
+helm inspect values REPOSITORY_NAME/CHART_NAME                                 
+
 [Lint]                                                                         # validating
 helm lint CHART_NAME
 helm lint ./CHART_NAME
@@ -103,12 +107,13 @@ helm search repo CHART_NAME
 [Status]
 helm status RELEASE_NAME
 
-[Show]
+[Show]                                                                         Helm v3
 helm show all CHART_NAME                                                       # inspects a chart (directory, file, or URL) and displays all its content (values.yaml, Chart.yaml, README)
 helm show chart CHART_NAME                                                     # inspects a chart (directory, file, or URL) and displays the contents of the Chart.yaml file
 helm show chart REPOSITORY_NAME/CHART_NAME
 helm show readme CHART_NAME                                                    # inspects a chart (directory, file, or URL) and displays the contents of the README file
 helm show values CHART_NAME                                                    # inspects a chart (directory, file, or URL) and displays the contents of the values.yaml file  
+helm show values REPOSITORY_NAME/CHART_NAME
 
 [Template]                                                                     # validating
 helm template CHART_NAME