a transformer plugin called like this gets the plugin config yaml as the first arg, and receives the entire resource list as a plain multi-doc yaml in stdin (NOT as a ResourceList).
the deprecated exec plugin is (poorly) described here: https://kubectl.docs.kubernetes.io/guides/extending_kustomize/exec_plugins/
a transformer plugin called like this gets the plugin config yaml as the first arg, and receives the entire resource list as a plain multi-doc yaml in stdin (NOT as a ResourceList).
```shell
set -euo pipefail
# collect inputs
{
echo "Received config:"
echo "$(cat "$@")"
echo "Received resources:"
echo "$(</dev/stdin)"
} > inputs.txt
```
this will print the inputs in `inputs.txt`.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
the deprecated exec plugin is (poorly) described here: https://kubectl.docs.kubernetes.io/guides/extending_kustomize/exec_plugins/
a transformer plugin called like this gets the plugin config yaml as the first arg, and receives the entire resource list as a plain multi-doc yaml in stdin (NOT as a ResourceList).
this will print the inputs in
inputs.txt.