In the VCF Automation 9.0.x release the krb5.conf could not be found to configure remote PowerShell Kerberos authentication.
VCF Automation 9.0.x
Create the krb5.conf file manually either using nano or cat
sudo -i
export KUBECONFIG=/etc/kubernetes/admin.confkubectl -n prelude exec -it vco-app-0 -c vco-server-app -- bash
touch /usr/lib/vco/app-server/conf/krb5.conf
nano /usr/lib/vco/app-server/conf/krb5.conf
cat << EOF > /usr/lib/vco/app-server/conf/krb5.conf
[libdefaults]
default_realm = YOURDOMAIN.COM
[realms]
YOURDOMAIN.COM = {
kdc = dc.yourdomain.com
default_domain = yourdomain.com
}
[domain_realm]
.yourdomain.com=YOURDOMAIN.COM
yourdomain.com=YOURDOMAIN.COM
EOFvco-app-1, vco-app-2