Hello NAISΒΆ
This tutorial will take you through the process of getting a simple application up and running on NAIS.
PrerequisitesΒΆ
- You have a GitHub account connected to your GitHub organization (e.g.
navikt
) - naisdevice installed
- Member of a NAIS team
- GitHub CLI installed
Conventions
Throughout this guide, we will use the following conventions:
<MY-APP>
- The name of your NAIS application (e.g.joannas-first
)<MY-TEAM>
- The name of your NAIS team (e.g.onboarding
)<GITHUB-ORG>
- Your GitHub organization (e.g.navikt
)<MY-ENV>
- The name of the environment you want to deploy to (e.g.dev
)
NB! Choose names with lowercase letters, numbers and dashes only.
SetupΒΆ
Create your own GitHub repositoryΒΆ
Create your own repo using the nais/hello-nais as a template.
You create a new repository through either the GitHub UI or through the GitHub CLI:
Authorize the repository for deploymentΒΆ
This is required for the GitHub Actions workflow to be able to deploy your application.
Visit Console. Select your team, and visit the Repositories
tab.
Here you can add your repository to the list of authorized repositories. This authorizes the GitHub repository to perform deployments on behalf of your team.
DockerfileΒΆ
This describes the system your application will be running on. It includes the base image, and the commands needed to build your application. This is the payload you are requesting NAIS to run. We have created this file for you, as there are no changes needed for this tutorial. Check it out.
Application manifestΒΆ
This file describes your application to the NAIS platform so that it can run it correctly and provision the resources it needs.
Create a file called app.yaml
in a .nais
-folder.
Add the following content to the file, and insert the appropriate values in the placeholders on the highlighted lines:
.nais/app.yaml
apiVersion: nais.io/v1alpha1
kind: Application
metadata:
name: <MY-APP>
namespace: <MY-TEAM>
spec:
ingresses:
- https://<MY-APP>.<MY-ENV>.nav.cloud.nais.io
image: {{image}}
port: 8080
ttl: 3h
replicas:
max: 1
min: 1
resources:
requests:
cpu: 50m
memory: 32Mi
Note the ttl: 3h
. It sets the "time to live" for your app to 3 hours, in case you start on this tutorial and forget to clean up after.
GitHub Actions workflowΒΆ
GitHub Actions uses the Dockerfile
from step 1 and the app.yaml
from step 2. to build and deploy your application to NAIS.
Create a file called main.yaml
in a .github/workflows
-folder.
Add the following content to the file, and insert the appropriate values in the placeholders on the highlighted lines:
.github/workflows/main.yaml
name: Build and deploy
on:
push:
branches:
- main
jobs:
build_and_deploy:
name: Build, push and deploy
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- name: Build and push image and SBOM to OCI registry
uses: nais/docker-build-push@v0
id: docker-build-push
with:
team: <MY-TEAM> # Replace
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} # Provided as Organization Secret
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }} # Provided as Organization Variable
- name: Deploy to NAIS
uses: nais/deploy/actions/deploy@v2
env:
CLUSTER: <MY_CLUSTER> # Replace (1)
RESOURCE: .nais/app.yaml # This points to the file we created in the previous step
VAR: image=${{ steps.docker-build-push.outputs.image }}
TELEMETRY: ${{ steps.docker-build-push.outputs.telemetry }}
DEPLOY_SERVER: deploy.nav.cloud.nais.io:443
- Cluster in this context is the same as the environment name. You can find the value in workloads/environments.
Excellent! We're now ready to deploy
Ship itΒΆ
Previously we've made our application and created the required files for deployment. In this part of the tutorial we will deploy our application to NAIS.
Commit and push your changesΒΆ
Now that we have added the required files, it's time to commit and push them to GitHub.
Observe the GitHub Actions workflowΒΆ
When pushed, the GitHub Actions workflow will automatically start. You can observe the workflow by running the following command:
- Visit your repository on GitHub.
- Navigate to
Actions
. - Select the latest workflow run.
Visit your applicationΒΆ
On successful completion, we can view our application at https://<MY-APP>.<MY-ENV>.nav.cloud.nais.io
Congratulations! You have now successfully deployed your first application to NAIS! The next and most important step is to clean up after ourselves.
Clean upΒΆ
During this tutorial we have
- created a github repository
- added the required files for deployment
- deployed our application to NAIS
Now it's time to clean up after ourselves.
Delete your repositoryΒΆ
When you are finished with this guide you can delete your repository:
- Visit your repository on GitHub.
- Navigate to
Settings
. - At the bottom of the page, click on
Delete this repository
- Confirm the deletion