Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔪 broken link stragglers #627

Merged
merged 3 commits into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
name: Build and publish doc

on:
push:
branches:
- main

on: push
jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -42,6 +37,7 @@ jobs:
./build.sh nav ssb ci-nais dev-nais tenant

publish:
if: github.ref == 'refs/heads/master'
needs: build
runs-on: ubuntu-latest
strategy:
Expand Down
7 changes: 3 additions & 4 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ mkdir -p ./out ./docs-base
# Copy documentation to base folder as we need to use docs as a staging folder
cp -r ./docs/* ./docs-base

for TENANT in $@;
do
for TENANT in $@;
do
rm -rf ./docs
cp -r ./docs-base ./docs
cp -rf ./tenants/$TENANT/* ./docs
TENANT=$TENANT poetry run mkdocs build --no-strict -d out/$TENANT
TENANT=$TENANT poetry run mkdocs build --strict -d out/$TENANT
done

2 changes: 1 addition & 1 deletion docs/how-to-guides/naisdevice/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@

### Connect naisdevice through task/sys -tray icon

![A macOS systray exemplifying a red-colored `naisdevice` icon.](../assets/naisdevice-systray-icon.svg)
![A macOS systray exemplifying a red-colored `naisdevice` icon.](../../assets/naisdevice-systray-icon.svg)

When you have opened naisdevice, you may be concerned that nothing happened. The little naisdevice icon has appeared in your Systray (where all your small program icons are located - see above picture for how it looks on Mac):

Expand Down
2 changes: 1 addition & 1 deletion docs/how-to-guides/observability/logs/kubectl.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This guide will show you how to view logs from the command line using `kubectl`.

## 0. Prerequisites

- You have installed the [kubectl](../../command-line-access.md) command-line tool.
- You have installed the [kubectl](../../command-line-access/setup.md) command-line tool.
- You have access to the [team](../../team.md) where the application is running.

## 1. Find the pod name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,3 @@ The final step is to include trace information in your logs. This will allow Gra
Now that you have tracing and logging set up, you can use Grafana Tempo to correlate traces and logs. When you view a trace in Grafana Tempo, you can see the logs that are associated with that trace. This makes it easy to understand what happened in your application and troubleshoot issues.

![Correlate traces and logs](../../../assets/grafana-tempo-logs.png)

[:arrow_backward: Back to the list of guides](../index.md)
15 changes: 8 additions & 7 deletions docs/how-to-guides/persistence/redis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Operator.
You can create many Redis instances for your `Application`.

## 0. Prerequisites
- [Member of a NAIS team](../../explanation/team.md)
- [Member of a NAIS team](../../../explanation/team.md)

!!! warning It is not possible to share Redis instances between teams.

## 1. Enable Redis in your [manifest](../../reference/application-spec.md)
## 1. Enable Redis in your [manifest](../../../reference/application-spec.md)

???+ note ".nais/app.yaml"
```yaml
Expand All @@ -27,7 +27,7 @@ The above snippet will allow your application to use the `sessions`
Redis instance, and provide the application with credentials for a
read/write user. In addition, the application will get credentials for
a read-only user for the `lookup` instance. See the [manifest
reference](../../reference/application-spec.md#redis) for other
reference](../../../reference/application-spec.md#redis) for other
options for `access`.

If all you need is a Redis instance for one application using just the
Expand All @@ -39,8 +39,9 @@ redis instances](./create-redis-instance-explicitly.md).
For each edis instance, your application will receive
three environment variables. The environment variables use a fixed
prefix, and the instance name uppercased as a suffix.
| Key | Value | |
|----------------------------------|--------------------------------------|---|
| `REDIS_URI_<InstanceName>` | The URI for the instance | |
| `REDIS_USERNAME_<InstanceName>` | The username to use when connecting. | |

| Key | Value | |
|---------------------------------|--------------------------------------|---|
| `REDIS_URI_<InstanceName>` | The URI for the instance | |
| `REDIS_USERNAME_<InstanceName>` | The username to use when connecting. | |
| `REDIS_PASSWORD_<InstanceName>` | The password to use when connecting. | |