9 lines
179 B
Plaintext
9 lines
179 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
set -euo pipefail
|
||
|
IFS=$'\n\t'
|
||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
|
||
|
export KUBECTL_EXTERNAL_DIFF="colordiff -N -u"
|
||
|
exec kubectl diff "$@"
|