Skip to content

Latest commit

 

History

History
140 lines (80 loc) · 5.16 KB

solutions-add-application-from-github.adoc

File metadata and controls

140 lines (80 loc) · 5.16 KB
sidebar permalink summary
sidebar
solutions-add-application-from-github.html
Learn how to deploy an Application from a GitHub repository.

Add an Application from GitHub

Learn how to deploy an Application on your NetApp Kubernetes Services (NKS) cluster from a GitHub repository.

If you don’t have an app to test, feel free to use our demo app.

Requirements

  • An NKS account. If you don’t have one already, you can sign up for a free 30-day trial with no credit card required at https://nks.netapp.io.

  • A Project set up and configured on your NKS account.

  • An NKS cluster with Build Version: Classic.

  • An application in a GitHub repository.

  • An SSH key pair for use as the deploy key. IMPORTANT: Create this key pair without a passphrase.

For instructions on how to create an SSH key pair, follow the instructions in this article.

If you have problems getting your Application up and running, you may need to customize your Procfile. Learn more about using a Procfile.

Add the Application

The first step is to add the Application to your NKS account.

Select Solution Type

Click Projects then select the Project you want to use.

Select your Project

Click + Add Solution. Click Application as the Solution type.

Click Application Solution type

Select the Workspace, Cluster, and Project you want to use, then click Next.

Define Version Control

In this step you will set two items:

  • NKS: The Remote URL

  • GitHub: The Private Deploy Key

Remote URL

To get this URL, visit your project’s GitHub repository page and click the green Clone or download button.

Note
You must use "Clone with SSH." If the pop-up says "Clone with HTTPS", click the "Use SSH" link in the upper right-hand corner of the pop-up to switch to SSH.
Clone with SSH

Click to copy the SSH URL. Paste this in to NKS as the Remote URL.

Add the Remote URL

Private Deploy Key

For this step you will need an SSH key pair. IMPORTANT: Create this key pair without a passphrase.

For more information on how to create an SSH key pair, see this article.

Use caution when copying the SSH key. For instructions on how to copy the SSH key, see this article.

  • Mac: Use pbcopy.

  • Linux: Use xclip.

  • Windows: Use Notepad. If you have Git BASH, use the clip command.

Paste the private key into the Private Deploy Key field on NKS. You will add the public key to GitHub in the next section.

Add your private key

Click Next to continue.

Configure Application

Set the application’s name, update strategy, and scaling. Click Next to continue.

Review and Confirm

Review and confirm all your settings. To change a setting, click the Edit button.

When you are sure that everything is correct, click Create to create the Solution. This creates your Solution and redirects you to the Application’s page.

Deploy and Update Code

Next, you will add configurations to your GitHub repository. To do this, you will give GitHub:

  • The Deploy Key. This is the public key you created.

  • The Payload URL (webhook) from NKS.

  • The Webhook Secret from NKS.

Add the Deploy Key

Go to the GitHub page for your repository and click Settings.

GitHub Settings

Click Deploy keys then click Add deploy key.

  • Be sure to add the public (not private) SSH key.

  • You do not need to enable write access.

Add the Webhook

From the GitHub Settings page, click Webhooks then click Add webhook.

Return to the NKS application page, where you will find the Payload URL and Webhook Secret.

Deploy the code

Paste these in to the Payload URL and Webhook Secret fields on GitHub.

  • For Content Type select application/json.

  • Enable SSL verification.

  • Set the events you want to trigger the webhook.

Click Add webhook to add the webhook.

Trigger the Webhook if Necessary

When you add your webhook, GitHub gives you three choices for which events trigger the webhook:

  • Just the push event

  • Send me everything

  • Let me select individual events

If your webhook is triggered by a push event, you will need to do a git push to trigger the webhook.

Check Your Application

At this point everything is configured, although it make take a few minutes for the deployment to complete. You can monitor the process on the Solution’s Metrics tab.

When the deployment is ready, you can view your application by visiting the ingress URL which NKS automatically created for your application.

Get your ingress URL