Skip to content

TroubleshootingΒΆ

Don't panicΒΆ

Deployment status Description
success Everything is fine, your application has been deployed, and is up and running.
queued Deployment request accepted, waiting to be deployed.
in_progress Application deployed to Kubernetes, waiting for new version to start.
failure Your application failed to start. Check state with kubectl describe app <APP>.
error Either an error in your request, or the deployment system has issues. Check the logs.

First debugging stepsΒΆ

When something is wrong with your application, these kubectl commands should be the first things you check out:

List the pods for your application for a quick overview of their statusΒΆ

kubectl get po -l app=<appname>

Describe a given pod to get more detailed statuses and messagesΒΆ

kubectl describe pod <podname>

This may reveal which container is failing and any exit codes that are emitted.

View the logs for your podsΒΆ

kubectl logs <podname>

This will output the logs from your application container.

If there are other containers in your pod (which you can see from the describe command above), you may view the logs by specifying the exact container:

kubectl logs <podname> -c <container>

Logs and tracesΒΆ

All deployments have logs collected from all parts of the deployment process. These logs can be found by following the link from the deploy-action logs in Github. This link looks like https://deploy.nav.cloud.nais.io/logs?delivery_id=<UUID>&ts=<TIMESTAMP>....

Additionally, there is a link to grafana to show the trace for the deployment. This link looks like https://grafana.nav.cloud.nais.io/d/<dashboard_id>/deploy-tracing-drilldown?var-trace_id=<trace id>.

Error messagesΒΆ

Message Action
502 bad gateway There is some transient error with GitHub. Please try again later. If the problem persists, ask for help.
applications.nais.io is forbidden: User "..." cannot create resource "applications" in API group "nais.io" at the cluster scope You forgot to specify the .namespace attribute in nais.yaml.
the server could not find the requested resource (total of 1 errors) The resource is not specifying its namespace.
MountVolume.SetUp failed for volume "" : secret "" not found See secret not found.
no team specified, and unable to auto-detect from nais.yaml The resource is missing the "team" label.
Error: fatal: Unauthenticated: authentication token has expired The token issued at the start of the github workflow has a lifetime of 10 minutes. Is your workflow taking too long?

Secret not foundΒΆ

When describing a pod or inspecting the deployment logs, you might find the following message:

Events:
  Type     Reason       Age                From               Message
  ----     ------       ----               ----               -------
  ...
  Warning  FailedMount  22m (x5 over 22m)  kubelet            MountVolume.SetUp failed for volume "<secret-name>" : secret "<secret-name>" not found

Some secrets needed to interact with external systems are eventually consistent.

Typically, the message appears on either:

  1. First-time deployments where the secret has to be provisioned, or
  2. As part of a secret rotation process

Generally, the warning message should not persist or be stuck for more than a minute.

One exception to this rule is the secrets to connect to Postgres when the application is first deployed. Creating SQLInstances takes time, usually as much as 8-10 minutes, and the first deploy will usually time out and be marked as failed while waiting for the SQLInstance to be created. It will eventually resolve itself, and the next deploy will succeed.

Follow the steps below to verify that the secret exists:

Step 1. Verify Pod eventsΒΆ

Success

If the event log looks like this:

Events:
Type     Reason       Age                    From               Message
----     ------       ----                   ----               -------
Normal   Scheduled    2m22s                  default-scheduler  Successfully assigned <namespace>/<pod> to <node>
Warning  FailedMount  2m20s (x3 over 2m22s)  kubelet            MountVolume.SetUp failed for volume "<secret-name>" : secret "<secret-name>" not found
Normal   Pulling      2m18s                  kubelet            Pulling image "<docker-image>"
Normal   Pulled       117s                   kubelet            Successfully pulled image "<docker-image>"
Normal   Created      61s (x4 over 115s)     kubelet            Created container <app>
Normal   Started      61s (x4 over 115s)     kubelet            Started container <app>

Then the secret was successfully found and your application's container has been started.

Failure

If the event log looks like this:

Events:
Type     Reason       Age                   From               Message
----     ------       ----                  ----               -------
Normal   Scheduled    4m53s                 default-scheduler  Successfully assigned <namespace>/<pod> to <node>
Warning  FailedMount  2m50s                 kubelet            Unable to attach or mount volumes: unmounted volumes=[<secret-name>], unattached volumes=[<secret-name>]: timed out waiting for the condition
Warning  FailedMount  43s (x10 over 4m53s)  kubelet            MountVolume.SetUp failed for volume "<secret-name>" : secret "<secret-name>" not found
Warning  FailedMount  35s                   kubelet            Unable to attach or mount volumes: unmounted volumes=[<secret-name>], unattached volumes=[<secret-name>]: timed out waiting for the condition

Then you should ask for help on Slack.

Step 2. Verify that the Secret existsΒΆ

With kubectl, run the following command to verify that the secret exists:

kubectl get secret <secret-name>
Success
➜ kubectl get secret my-secret

    NAME        TYPE     DATA  AGE
    my-secret   Opaque   3     15h
Failure
➜ kubectl get secret my-secret

    Error from server (NotFound): secrets "my-secret" not found

Depending on which system provides the secret, there are other resources that could contain information about your problem. By looking at these resources, you can often find the direct cause of the problem. See the following table for information about which resources you can look at for various kinds of secrets. Once you know the type of resource, use kubectl describe <resource> <app name> to look at it. Typically, you should inspect the Status parts of the output.

Type of secret Resource to check
Postgres user credentials (google-sql-...) sqluser
Postgres certificates (sqeletor-...) sqlsslcert
Kafka (aiven-...) aivenapp
OpenSearch (aiven-...) aivenapp
Influx (aiven-...) aivenapp
Redis (aiven-...) aivenapp
Entra-ID (azure-...) azureapp
TokenX (tokenx-...) jwker
ID porten (idporten-...) idportenclient
Maskinporten (maskinporten-...) maskinportenclient

sqluser and sqlsslcertΒΆ

When the SQLInstance is not ready, either because it is still being created, or some modification is being made to it, the sqluser and sqlsslcert resources will not be updated, which again blocks creation of secrets.

Cannot assign a private IP address for an existing Cloud SQL instance in a Shared VPCΒΆ

An SQLInstance created before 2024-04-18 will have a public IP address, and can not be updated to have a private IP address. This error occurs when the SQLInstance resource in the cluster has been deleted, without the corresponding instance actually being deleted in GCP. In this case, nais is unable to detect that the instance has a public IP, and will attempt to assign a private IP, which is not possible.

The solution is to edit the SQLInstance resource in the cluster and removing the ipConfiguration stanzas: kubectl edit sqlinstance <instancename>. After a few minutes the issue will be resolved and the secrets will be created.

Step 4. Ask for helpΒΆ

If you have followed the above checklist, verified that the secret does not exist, and can't see a reason for that, please contact #nais for further assistance.

Asking on SlackΒΆ

If you read this entire page, and checked your logs, and checked application status with kubectl, you can ask Slack for help. Make sure to include the following information:

  • Application
  • Team tag
  • Namespace
  • Cluster name
  • Link to logs
  • What steps you already took to debug the error