Deploy board sees deployment but not pods

Everyone can contribute. Help move this issue forward while earning points, leveling up and collecting rewards.

  • Close this issue

Summary

Trying to setup deployment board for project in our group-cluster.

I've set added the environment section to my deploy step in .gitlab-ci.yml file.

deploy-dev:
  stage: deploy-dev
  environment:
    name: tagging-dev
    url: https://example.com
  only:
    - development  
  <<: *builder_setup
  dependencies:
    - build
  variables:
    RELEASE_NAME: $APP_NAME-dev
    NAMESPACE: $DEV_NAMESPACE
  script:
    - set -x
    - kubectl create namespace "$KUBE_NAMESPACE" || echo "namespace already exists"    
    - echo "$CI_PROJECT_PATH_SLUG"
    - echo "$CI_ENVIRONMENT_SLUG"
    - |
       helm upgrade --install --force --namespace $KUBE_NAMESPACE --debug $RELEASE_NAME \
         --set image.repository="$IMAGE_REPO" \
         --set image.tag="$IMAGE_TAG" \
         --set namespace="$KUBE_NAMESPACE" \
         --set ci.project="$CI_PROJECT_PATH_SLUG" \
         --set ci.environment="$CI_ENVIRONMENT_SLUG" ./nsw-tagging/
    - time kubectl rollout status --namespace "$KUBE_NAMESPACE" deployment/$RELEASE_NAME  

I've also passed the $CI_ENVIRONMENT_SLUG and $CI_PROJECT_PATH_SLUG as annotations to my deployment. annotations

Helm is showing that the chart is DEPLOYED so everything seems fine, however I cannot see nor access the pods in the deployment boards.

Screenshot_from_2019-08-01_16-36-27

When clicking at the pod I see this, likely 5xx

Screenshot_from_2019-08-01_16-53-16

Steps to reproduce

Follow the documentation for deploy boards with custom ingress.

What is the current bug behavior?

Deploy board not working

What is the expected correct behavior?

Deploy board working

Output of checks

This bug happens on GitLab.com

Edited Jun 30, 2025 by 🤖 GitLab Bot 🤖
Assignee Loading
Time tracking Loading