entrypoint-gcp 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #!/bin/bash
  2. #
  3. # This file sets up the user to run in the GCP environment.
  4. # It provides dynamic inventory that works well when run in
  5. # a container environment by setting up a default inventory.
  6. # It assumes the user has provided a GCP service account token
  7. # and ssh-privatekey file at "$(pwd)/inventory/dynamic/injected"
  8. # and automatically links any YAML files found into the group
  9. # vars directory, which allows the playbook to more easily be
  10. # run in containerized contexts.
  11. WORK=$(pwd)
  12. FILES="${WORK}/inventory/dynamic/injected"
  13. # Patch /etc/passwd file with the current user info.
  14. # The current user's entry must be correctly defined in this file in order for
  15. # the `ssh` command to work within the created container.
  16. if ! whoami &>/dev/null; then
  17. echo "${USER:-default}:x:$(id -u):$(id -g):Default User:$HOME:/sbin/nologin" >> /etc/passwd
  18. fi
  19. # Provide a "files_dir" variable that points to inventory/dynamic/injected
  20. echo "files_dir: \"${FILES}\"" > "${WORK}/inventory/dynamic/gcp/group_vars/all/00_default_files_dir.yml"
  21. # Add any injected variable files into the group vars directory
  22. find "${FILES}" -name '*.yml' -or -name '*.yaml' -or -name vars | xargs -L1 -I {} ln -fs {} "${WORK}/inventory/dynamic/gcp/group_vars/all"
  23. # Avoid sudo when running locally - nothing in the image requires it.
  24. mkdir -p "${WORK}/inventory/dynamic/gcp/host_vars/localhost"
  25. echo "ansible_become: no" > "${WORK}/inventory/dynamic/gcp/host_vars/localhost/00_skip_root.yaml"
  26. if [[ -z "${ANSIBLE_CONFIG-}" ]]; then
  27. export ANSIBLE_CONFIG="${WORK}/inventory/dynamic/gcp/ansible.cfg"
  28. fi
  29. # SSH requires the file to be owned by the current user, but Docker copies
  30. # files in as root. Put the file into the ssh dir with the right permissions
  31. if [[ -f "${FILES}/ssh-privatekey" ]]; then
  32. keyfile="${HOME}/.ssh/google_compute_engine"
  33. mkdir "${HOME}/.ssh"
  34. rm -f "${keyfile}"
  35. cat "${FILES}/ssh-privatekey" > "${keyfile}"
  36. chmod 0600 "${keyfile}"
  37. ssh-keygen -y -f "${keyfile}" > "${keyfile}.pub"
  38. fi
  39. if [[ -f "${FILES}/gce.json" ]]; then
  40. gcloud auth activate-service-account --key-file="${FILES}/gce.json"
  41. else
  42. echo "No service account file found at ${FILES}/gce.json, bypassing login"
  43. fi
  44. exec "$@"