During installation of an OpenShift 4 cluster, the `openshift-install` command line tool creates an `auth` directory, with `kubeconfig` and `kubeadmin-password` files. Both files contain credentials used to authenticate to the OpenShift API server, and are incorrectly assigned word-readable permissions.
In contrast, the `oc` command line tool creates configuration files that are only readable by the current user.
Config created with `openshift-install`:
$ ls -l auth/
-rw-r--r--. 1 root root 23 Nov 27 16:24 kubeadmin-password
-rw-r--r--. 1 root root 8949 Nov 27 16:24 kubeconfig
Config created with `oc adm create-kubeconfig`:
$ ls -l .kubeconfig
-rw-------. 1 root root 10538 Nov 27 15:40 .kubeconfig