Step-by-step instructions on how to allow Code Engine to access repositories in IBM Git.
IBM Cloud® Code Engine is a fully managed, serverless platform that runs your containerized workloads, including web apps, microservices, event-driven functions or batch jobs. Code Engine even builds container images for you from your source code.
One of the best features of Code Engine is application scaling. It can scale down to zero instances when there is no access, and this will help reduce the running cost.
Right now, a number of users have their applications running in Cloud Foundry (CF), and its source code is often stored in IBM Git, which sets its repositories private by default. In this article, I will introduce how to allow Code Engine to access repositories in IBM Git. There are three sections of actions you need to perform.
Prerequisites
- An IBM Cloud account and access to deploy apps in IBM Cloud Code Engine
- A basic understanding of Code Engine and how to write a Dockerfile
Step 1: Prepare an SSH key pair
In order to let Code Engine to access repositories in IBM Git, you need to use an SSH key pair. Since Code Engine does not accept passphrased keys, let’s create a new set of key pairs. Please note I used MacOS in this example.
- Create a new SSH key pair in RSA format. Run the following command in your terminal window. Please specify a new key name:
Do not passphrase your SSH key. The SSH key must be unencrypted when you use it in Code Engine.
- Check that the keys are correctly created. The above command will create two files. One is a private key and the other is a public key. You need to place the public key on your IBM Git — then you will be able to connect from your local machine using the private key. Go to /Users/<Username>/.ssh directory and check there are two files. The file with the .pub extension is the public key, and the one without is the private key:
Step 2: Register the public key in IBM Git
In this example, IBM Git in US-South is used. Please change the URL if necessary.
- Go to https://us-south.git.cloud.ibm.com/-/profile/keys and paste what’s in the .pub file in the Key section. Fill in the title and expiry if necessary, and click on Add Key:
- Once the public key is added, go back to your terminal and test the connection. By default, your terminal uses id_rsa, so we need to add extra lines in the config file to use the newly created private key. Please specify an appropriate Git server endpoint and the private key:
- Run SSH and check the connection works correctly. Use the Host name defined in the above step:
Step 3: Create a Code repo access
Now we need to add the private key to your Code Engine project so that it can connect to your IBM Git repositories.
- Open your Code Engine project. If you do not have one yet, create one.
- Click Create and enter these details:
- Code repo server: us-south.git.cloud.ibm.com
- SSH private key: Open your private key in terminal. Copy everything, including the first and the last line, and paste in the field:
- Click Create.
Let’s deploy an application
Your Code Engine project should be able to pull code from your IBM Git repositories now, so let’s test it out.
For this blog post, I am deploying an application from my IBM Git repository. I will post another blog with a set of code to test it out.
- Go to your project and open Applications from the left menu. Click Create.
- Select Source Code.
- Click Specify build details and enter these details. Be careful with format for thr Code repo URL.
- Code repo URL: git@us-south.git.cloud.ibm.com:<Username>/<Repository name>.git (For example: git@us-south.git.cloud.ibm.com:knobutan/CFtoCE.git)
- Code repo access: Select what you created in Step 2:
- Specify the rest and click Create.
The outcome should show that the build was successful:
The application should be successfully deployed:
What’s next?
For more details of Code repo access, please refer to this page.
For any questions about Code Engine or other information about the platform, please contact IBM Cloud support.