Deploy board sees deployment but not pods
Everyone can contribute. Help move this issue forward while earning points, leveling up and collecting rewards.
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.

Helm is showing that the chart is DEPLOYED so everything seems fine, however I cannot see nor access the pods in the deployment boards.
When clicking at the pod I see this, likely 5xx
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 by 🤖 GitLab Bot 🤖

