KUBELET_CERT_DIR='/var/lib/kubelet/pki'
#KUBELET_CA_FILE="${KUBELET_CERT_DIR}/ca.crt"
KUBELET_LOG_LEVEL=2

KUBELET_ARGS="
--pod-manifest-path /etc/kubernetes/manifests
${KUBELET_CA_FILE:+--client-ca-file='${KUBELET_CA_FILE}'}
--cert-dir '${KUBELET_CERT_DIR}'
--rotate-certificates true
--v ${KUBELET_LOG_LEVEL}
"

DAEMON_ARGS="${KUBELET_ARGS}"
