Skip to main content
Version: 3.0.0

GitLab

Prerequisites

To complete this how-to guide you need:

  • A GitLab account
  • A terminal with:
    • Git CLI installed (pre-installed on macOS and Linux, or use brew install git with Homebrew)

Set up variables

Set the GitLab group and repository to use:

tip

Leave GITLAB_GROUP empty to use your GitLab username.

GITLAB_GROUP=""
GITLAB_REPOSITORY="ascend-community"

Choose your Ascend data plane:

DATA_PLANE="bigquery"
tip

Otto's Expeditions is compatible with multiple data planes. You can explore the demo using separate projects for each data plane or create a single project that uses multiple data planes simultaneously. This guide focuses on a single data plane setup.

Check that the GitLab group is set:

if [ -z "$GITLAB_GROUP" ]; then
echo "you didn't set a GitLab group, using your GitLab username..."
GITLAB_GROUP=$(git config user.name)
fi
echo "$GITLAB_GROUP/$GITLAB_REPOSITORY"

Copy Ascend Community code to your repository

tip

You can use the following command to check if the repository already exists:

git ls-remote git@gitlab.com:$GITLAB_GROUP/$GITLAB_REPOSITORY.git

Change the variables above if needed.

Clone the public ascend-io/ascend-community GitHub repository:

git clone https://github.com/ascend-io/ascend-community.git $GITLAB_REPOSITORY

Change into the repository directory:

cd $GITLAB_REPOSITORY

Remove the .git directory:

rm -rf .git

Initialize a new .git directory:

git init

Create a commit:

git checkout -b main
git add .
git commit -m "copy code from ascend-io/ascend-community"

Set the root of the project:

PROJECT_ROOT="ascend-community/ottos-expeditions/projects/$DATA_PLANE"

Create a new private repository in GitLab:

  1. Go to GitLab, click New project, and select Create blank project.
  2. Set the project name to ascend-community (matching $GITLAB_REPOSITORY).
  3. Choose Private for visibility level.
  4. Uncheck the box for Initialize repository with a README
  5. Click Create project. Setup Gitlab project

Enable SSH access to the GitLab repository

Ascend requires a private SSH key to access your GitLab repository. You must set the corresponding public SSH key in your GitLab account settings.

Set up variables

Choose a name for the SSH key:

SSH_KEY_NAME="ascend_ottos_expeditions"

Create a new SSH key on your local machine

Create a new SSH key:

ssh-keygen -t ed25519 -N "" -f ~/.ssh/$SSH_KEY_NAME

Add the SSH public key to your GitLab account

warning

This section uses the pbcopy command, which is specific to macOS. If you're using a different OS, please use the appropriate command for your system to copy text to the clipboard.

  1. In GitLab, click Add SSH Key in the pop-up at the top of your Repository (or go to User Settings > SSH Keys) Add SSH key in GitLab
  2. Click Add new key
  3. Copy your public key and paste it into the Key field:
cat ~/.ssh/$SSH_KEY_NAME.pub | pbcopy
  • Title: "Ascend Otto's Expeditions"
  • Usage Type: "Authentication & Signing"
  • Optionally, add an expiration date for security. GitLab SSH Settings
  1. Click Add key.

Confirm in the GitLab UI

Open your repository in the GitLab UI to confirm everything looks correct:

git remote -v

Push the code to the new repository:

git push -u origin main
tip

If you run into the following error, follow these steps to update your GitLab SSH configuration and try again:

git push -u origin main
git@gitlab.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

Set the root of the project:

PROJECT_ROOT="ottos-expeditions/projects/$DATA_PLANE"

Create the Ascend Repository

In the Ascend UI, navigate to Settings > Repositories and click Add Repository.

warning

This section uses the pbcopy command, which is specific to macOS. If you're using a different OS, please use the appropriate command for your system to copy text to the clipboard.

Copy the repository URI

Copy the repository URI to the clipboard:

echo "git@gitlab.com:$GITLAB_GROUP/$GITLAB_REPOSITORY.git" | pbcopy

Paste it into the Repository URI field in the Ascend UI.

Copy the SSH private key to clipboard

Copy the SSH private key to the clipboard:

cat ~/.ssh/$SSH_KEY_NAME | pbcopy

Paste it into the SSH Private Key field in the Ascend UI.

warning

If you're manually copying the SSH private key, ensure you copy the entire key of the form:

-----BEGIN OPENSSH PRIVATE KEY-----
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
-----END OPENSSH PRIVATE KEY-----

Including the -----BEGIN OPENSSH PRIVATE KEY----- and -----END OPENSSH PRIVATE KEY----- lines.

Click Check and Save.

Create the Ascend Project

In the Ascend UI, navigate to Settings > Projects and click Add Project.

Set the Title to "Otto's Expeditions", or whatever you like! For the Repository field, select the repository you just added from the dropdown.

Copy the Project Root to your clipboard:

echo "$PROJECT_ROOT" | pbcopy

Paste it into the Project Root field in the Ascend UI. Click Save.

Next steps

🎉 Congratulations, you're ready to create an Ascend Workspace and start using Otto's Expeditions!