serviceaccount.sh 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #!/bin/bash
  2. # Parse CLI options
  3. for i in "$@"; do
  4. case $i in
  5. --master-cert-dir=*)
  6. MASTER_DIR="${i#*=}"
  7. CA_CERT=${MASTER_DIR}/ca.crt
  8. CA_KEY=${MASTER_DIR}/ca.key
  9. CA_SERIAL=${MASTER_DIR}/ca.serial.txt
  10. ADMIN_FILE=${MASTER_DIR}/admin.kubeconfig
  11. ;;
  12. --server=*)
  13. SERVER="${i#*=}"
  14. ;;
  15. --output-cert-dir=*)
  16. OUTDIR="${i#*=}"
  17. CONFIG_FILE=${OUTDIR}/nuage.kubeconfig
  18. ;;
  19. esac
  20. done
  21. # If any are missing, print the usage and exit
  22. if [ -z $SERVER ] || [ -z $OUTDIR ] || [ -z $MASTER_DIR ]; then
  23. echo "Invalid syntax: $@"
  24. echo "Usage:"
  25. echo " $0 --server=<address>:<port> --output-cert-dir=/path/to/output/dir/ --master-cert-dir=/path/to/master/"
  26. echo "--master-cert-dir: Directory where the master's configuration is held"
  27. echo "--server: Address of Kubernetes API server (default port is 8443)"
  28. echo "--output-cert-dir: Directory to put artifacts in"
  29. echo ""
  30. echo "All options are required"
  31. exit 1
  32. fi
  33. # Login as admin so that we can create the service account
  34. oc login -u system:admin --config=$ADMIN_FILE || exit 1
  35. oc project default --config=$ADMIN_FILE
  36. ACCOUNT_CONFIG='
  37. {
  38. "apiVersion": "v1",
  39. "kind": "ServiceAccount",
  40. "metadata": {
  41. "name": "nuage"
  42. }
  43. }
  44. '
  45. # Create the account with the included info
  46. echo $ACCOUNT_CONFIG|oc create --config=$ADMIN_FILE -f -
  47. # Add the cluser-reader role, which allows this service account read access to
  48. # everything in the cluster except secrets
  49. oadm policy add-cluster-role-to-user cluster-reader system:serviceaccounts:default:nuage --config=$ADMIN_FILE
  50. # Generate certificates and a kubeconfig for the service account
  51. oadm create-api-client-config --certificate-authority=${CA_CERT} --client-dir=${OUTDIR} --signer-cert=${CA_CERT} --signer-key=${CA_KEY} --signer-serial=${CA_SERIAL} --user=system:serviceaccounts:default:nuage --master=${SERVER} --public-master=${SERVER} --basename='nuage'
  52. # Verify the finalized kubeconfig
  53. if ! [ $(oc whoami --config=$CONFIG_FILE) == 'system:serviceaccounts:default:nuage' ]; then
  54. echo "Service account creation failed!"
  55. exit 1
  56. fi