Database CI/CD and Schema Migration with SQL Server and GitHub

Estimated: 30 mins
Database CI/CD and Schema Migration with SQL Server and GitHub

A series of articles about Database CI/CD and Schema Migration with SQL Server


In the last article Database CI/CD and Schema Migration with SQL Server, you have tried UI workflow in Bytebase.

This tutorial will bring you to the next level by introducing the GitOps workflow, where you commit the schema change script to the GitHub repository, which will in turn trigger the schema deployment pipeline in Bytebase.

You can use Bytebase free version to finish the tutorial.

Prerequisites

Before you start this tutorial, make sure:

Step 1 - Run Bytebase in Docker and set the External URL generated by ngrok

ngrok is a reverse proxy tunnel, and in our case, we need it for a public network address in order to receive webhooks from VCS. ngrok we used here is for demonstration purposes. For production use, we recommend using Caddy.

ngrok-reverse-proxy

  1. Run Bytebase in Docker with the following command:

    docker run --rm --init \
      --name bytebase \
      --publish 8080:8080 --pull always \
      --volume ~/.bytebase/data:/var/opt/bytebase \
      bytebase/bytebase:2.16.0
  2. Bytebase is running successfully in Docker, and you can visit it via localhost:8080. Register an admin account and it will be granted the workspace admin role automatically.

  3. Login to ngrok Dashboard and complete the Getting Started steps to install and configure. If you want to use the same domain each time you launch ngrok, go to Cloud Edge > Domains, where you'll find the domain <<YOURS>>.ngrok-free.app linked to your account.

  4. Run the ngrok command ngrok http --domain=<<YOURS>>.ngrok-free.app 8080 to start ngrok with your specific domain, and you will see the output displayed below:

    terminal-ngrok

  5. Log in Bytebase and click the gear icon (Settings) on the top right. Click General under Workspace. Paste <<YOURS>>.ngrok-free.app as External URL under Network section and click Update.

    external-url

  6. Now you can access Bytebase via <<YOURS>>.ngrok-free.app.

Step 2 - Find your SQL Server instance in Bytebase

  1. Visit Bytebase Console through the browser via your ngrok URL. Log in using your account created from the previous tutorial. bb-login

  2. If you have followed the last article, you should have a Project Sample Project and a database db_demo.

Step 3 - Connect Bytebase with GitHub.com

  1. Click Settings on the top bar, and then click Workspace > GitOps. Choose GitHub.com and click Next.

  2. Follow the instructions within STEP 2, and in this tutorial, we will use a personal account instead of an organization account. The configuration is similar.

  3. Go to your GitHub account. Click your avatar on the top right, and then click Settings on the dropdown menu.

    gh-settings-dropdown

  4. Click Developer Settings at the bottom of the left sidebar. Click OAuth Apps, and add a New OAuth App.

    gh-oauth-apps

  5. Fill Application name and then copy the Homepage and Authorization callback URL in Bytebase and fill them. Click Register application.

  6. After the OAuth application is created, click Generate a new client secret.

  7. Go back to Bytebase. Copy the Client ID and the newly generated Client Secret, and paste them back into Bytebase's Application ID and Secret.

    bb-settings-gitops-step2

  8. Click Next. You will be redirected to the confirmation page. Click Confirm and add, and the Git provider is successfully added.

Step 4 - Enable GitOps workflow with SQL Server

  1. Go back to Bytebase, click Projects on the top bar and click New Project. Name it Demo GitOps and click Create.

  2. Go to the project and click New DB. Create a new database db_gitops_demo with environment Prod and instance SQL Server. Click Create.

  3. Within the project, click Integration > GitOps on the left sidebar, and choose GitOps Workflow. Click Configure GitOps.

  4. Choose GitHub.com - the provider you just added. It will display all the repositories you can manipulate. Choose bb-ngrok-sql-server.

  5. Scroll down and check Enable SQL Review CI via GitHub Action. Keep the other settings default and click Finish.

  6. You'll be redirect to an GitHub issue. Click Merge pull request and confirm. The SQL Review CI is enabled.

    gh-issue-ci

Step 5 - Change schema for SQL Server by pushing SQL schema change files to GitHub

  1. In your GitHub repository bb-ngrok-sql-server, create a folder bytebase, then create a subfolder prod, and create an sql file following the pattern {{ENV_ID}}/{{DB_NAME}}##{{VERSION}}##{{TYPE}}##{{DESCRIPTION}}.sql. It is the default configuration for file path template setting under project version control.

    prod/db_gitops_demo##202401020000##ddl##create_t2.sql

    • prod corresponds to {{ENV_ID}}
    • db_gitops_demo corresponds to {{DB_NAME}}
    • 202401020000 corresponds to {{VERSION}}
    • ddl corresponds to {{TYPE}}
    • create_t2 corresponds to {{DESCRIPTION}}

    Paste the sql script in it.

    CREATE TABLE t2 (id INT);
  2. Commit and create a new branch for this commit. Then create a pull request. On the pull request page, you'll see the SQL Review CI is running. Wait for it to finish. The checks don't pass.

    gh-ci-not-pass

  3. Click details, and you'll see the SQL Review violation -- Warning: Column [id] is nullable, which is not allowed..

    gh-ci-not-pass-detail

  4. Edit the SQL file, add NOT NULL constraint and commit the change. You'll find the SQL Review CI is running again. This time it passes. Click Merge pull request and confirm.

    CREATE TABLE t1 (id INT NOT NULL DEFAULT 1);
  5. Go to Bytebase, and go into project Demo GitOps. You’ll find there is a new Push Event and a new issue created. bb-push-event

  6. Click View and then go to the issue page, you’ll see

    • The issue is created via GitHub.com
    • The SQL is exactly the one we have committed to the GitHub repository.
    • The Assignee is System Bot, because the GitHub user you use to commit the change doesn't match any email address in the Bytebase member list. bb-issue-gitops-demo
  7. The SQL will execute and the issue will be Done.

  8. Click View change, and you'll view the schema diff.

  9. Go to the GitHub repository, and you'll see there isn't any new file created.

Step 6 - Upgrade to Enterprise Plan and Change Again

You may click Start free trial on the left bottom corner and request an Enterprise license. With that, besides your committed sql, there'll be a .db_gitops_demo##LATEST.sql file. Because you have configured Schema path template before, Bytebase will write back the latest schema to that specified path after completing the schema change. Thus you have access to an update-to-date full schema at any time.

Summary and Next

Now you have tried out GitOps workflow, which will store your SQL Server schema in GitHub and trigger the change upon committing the change to the repository, to bring your SQL Server change workflow to the next level of Database DevOps - Database as Code.

Edit this page on GitHub

Subscribe to Newsletter

By subscribing, you agree with Bytebase's Terms of Service and Privacy Policy.