diff --git a/lib/ansible/modules/cloud/misc/helm.py b/lib/ansible/modules/cloud/misc/helm.py index 15891f7b92f..b164f3f062d 100644 --- a/lib/ansible/modules/cloud/misc/helm.py +++ b/lib/ansible/modules/cloud/misc/helm.py @@ -90,6 +90,8 @@ EXAMPLES = ''' state: present name: my-example namespace: default + values: + foo: "bar" - name: Install helm chart from a git repo specifying path helm: @@ -102,6 +104,7 @@ EXAMPLES = ''' state: present name: my-memcached namespace: default + values: "{{ lookup('file', '/path/to/file/values.yaml') | from_yaml }}" ''' import traceback