Skip to content

Commit 7fd6ead

Browse files
tronghnkimtore
andcommitted
cdn: passthrough and clean up for use of new action
Co-authored-by: Kim Tore Jensen <[email protected]>
1 parent 475f3cc commit 7fd6ead

File tree

6 files changed

+106
-78
lines changed

6 files changed

+106
-78
lines changed

docs/explanation/cdn.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
tags:
3+
- CDN
4+
---
5+
6+
# Content Delivery Network (CDN)
7+
8+
A content delivery network (CDN) is a service for serving static content and single-page applications (SPA).
9+
10+
NAIS offers CDN as a service through Google
11+
Cloud CDN. The CDN is used for serving static content such as HTML
12+
files, JavaScript libraries and files, stylesheets, and images.
13+
14+
Assets are deployed by uploading them to a bucket using a GitHub
15+
action.
16+
17+
## What's next?
18+
19+
- :dart: Learn how to [upload assets to the CDN](../how-to-guides/cdn.md)
20+
- :computer: [CDN Reference documentation](../reference/cdn.md)

docs/explanation/workloads/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,3 @@ A [NAIS application](./application.md) is a used for long-running processes such
99

1010
## NAIS job
1111
A [NAIS job](./job.md) is used for tasks meant to complete and then exit. This can either run as a one-off task or on a schedule.
12-
13-
## NAIS CDN
14-
[NAIS CDN](./cdn.md) offers a way to serve static content and single-page applications (SPA).

docs/explanation/workloads/cdn.md

-21
This file was deleted.

docs/how-to-guides/CDN.md

-41
This file was deleted.

docs/how-to-guides/cdn.md

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
tags:
3+
- CDN
4+
---
5+
6+
# Upload assets to the CDN
7+
8+
This how-to guide shows you how to upload assets to the [CDN](../explanation/cdn.md).
9+
10+
## 0. Prerequisites
11+
12+
- A [NAIS team](team.md).
13+
- A GitHub repository that the team has access to.
14+
- The repository needs to have a [GitHub workflow](github-action.md#2-create-a-github-workflow) that builds the assets you want to upload.
15+
16+
## 1. Authorize repository for upload
17+
18+
1. Open [NAIS console](https://console.<<tenant()>>.cloud.nais.io) in your browser and select your team.
19+
2. Select the `Repositories` tab
20+
3. Find the repository you want to deploy from, and click `Authorize`
21+
22+
## 2. Upload assets with the CDN action
23+
24+
In your Github Workflow, add the following step to upload your assets to the CDN:
25+
26+
```yaml
27+
- name: Upload static files to NAV CDN
28+
uses: nais/deploy/actions/cdn-upload/v2@master
29+
with:
30+
team: <team slug> # Required, e.g. "team-name"
31+
tenant: <<tenant()>> # Optional, defaults to "nav"
32+
source: <The path to your build folder or assets>
33+
destination: <A destination you pick, like /my-app/dist>
34+
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }} # Provided as Organization Secret
35+
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }} # Provided as Organization Variable
36+
```
37+
38+
For more information on the inputs and outputs of the action, see the [CDN Reference](../reference/cdn.md).
39+
40+
## 3. Use the uploaded assets
41+
42+
The assets from the CDN will be available at
43+
44+
{% if tenant() == "nav" %}
45+
```
46+
https://cdn.nav.no/<team>/<destination>
47+
```
48+
49+
and
50+
51+
```
52+
https://cdn.<<tenant()>>.cloud.nais.io/<team>/<destination>
53+
```
54+
{% else %}
55+
```
56+
https://cdn.<<tenant()>>.cloud.nais.io/<team>/<destination>
57+
```
58+
{% endif %}
59+
60+
CORS is automatically configured to accept `GET` from any
61+
origin (*).

docs/reference/cdn.md

+25-13
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,37 @@ tags:
33
- CDN
44
---
55

6-
# CDN
6+
# Content Delivery Network (CDN)
77

8-
Reference documentation for the [CDN](../explanation/workloads/cdn.md) deploy action.
8+
This is the reference documentation for the [CDN](../explanation/cdn.md) service.
99

10-
## Inputs
10+
## How-to guides
11+
12+
- :dart: [Upload assets to the CDN](../how-to-guides/cdn.md)
13+
14+
## CDN Deploy Action
15+
16+
Reference documentation for the CDN GitHub action.
17+
18+
### Inputs
1119

1220
The action accepts the following inputs:
1321

14-
| input | description | default | required |
15-
|--------------------|---------------------------------------------------------|---------|----------|
16-
| team-name | Team name || true |
17-
| destination | Destination directory || true |
18-
| source | Source directory || true |
19-
| cache-invalidation | Invalidate cached content after upload | `false` | false |
20-
| no-cache-paths | Comma separated list of paths that should not be cached | `""` | false |
22+
| input | description | default | required |
23+
|-------------------------|------------------------------------------------------------|---------|----------|
24+
| team | Team name || true |
25+
| tenant | Tenant name | `"nav"` | false |
26+
| source | Source directory || true |
27+
| destination | Destination directory || true |
28+
| source_keep_parent_name | Keep parent directory name when uploading | `true` | false |
29+
| cache_invalidation | Invalidate cached content after upload | `false` | false |
30+
| no_cache_paths | Comma separated list of paths that should not be cached | `""` | false |
31+
| project_id | Should be `${{ vars.NAIS_MANAGEMENT_PROJECT_ID }}` | `""` | true |
32+
| identity_provider | Should be `${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }}` | `""` | true |
2133

22-
## Outputs
34+
### Outputs
2335

24-
### `uploaded`
36+
#### `uploaded`
2537

2638
List of successfully uploaded files.
2739

@@ -32,7 +44,7 @@ For example:
3244
```yaml
3345
- id: 'upload-cdn'
3446
name: Upload static files to NAV CDN
35-
uses: navikt/frontend/actions/cdn-upload/v2
47+
uses: nais/deploy/actions/cdn-upload/v2@master
3648
...
3749
```
3850

0 commit comments

Comments
 (0)