-
Bug
-
Resolution: Duplicate
-
Undefined
-
Unspecified
-
False
-
-
False
-
-
https://github.com/ansible-collections/kubernetes.core/issues/395
-
-
-
-
- SUMMARY
The Kubernetes returns with `--check --diff` CLI parameters, the actual diff that would be applied on the cluster. It would be great if the helm module would do the same.
- SUMMARY
-
-
-
-
-
-
-
- ISSUE TYPE
-
-
-
- Feature
-
-
-
-
- COMPONENT NAME
helm.py
- COMPONENT NAME
-
-
-
-
-
-
-
- ADDITIONAL INFORMATION
It would be a great enhancement for CI/CD pipelines.
- ADDITIONAL INFORMATION
-
-
-
<!--- Paste example playbooks or commands between quotes below -->
```bash
ansible-playbook -i inventory.yaml -e variable_host="play" --check --diff basic-service-deploy.yaml
```
```yaml
- name: install helm package
kubernetes.core.helm:
chart_ref: "{{ chart_ref }}"
chart_version: "{{ version }}"
create_namespace: y
context: "{{ inventory_hostname }}"
release_name: hello
release_namespace: hello-world
release_state: present
```