Everytime we deploy to env. in gitlab even successful , the environment appears in stopped status.
gitlab version: 16.3
this is my tmpl:
.deploy:test:
extends:
- .deploy
variables:
ENVIRONMENT: “test”
DEPLOY_BRANCH: “test”
except:
- develop
- master
environment:
name: ${ENVIRONMENT}${ENVIRONMENT_POSTFIX}
url: https://${ENVIRONMENT_OVERRIDE:-$ENVIRONMENT}${ENVIRONMENT_POSTFIX}.${DOMAIN_NAME}
deployment_tier: testing
action: start
And the job
deploy:test:
extends:
- .deploy:test
- .vars-test
parallel:
matrix:
- ENVIRONMENT_POSTFIX: [1, 2, 3, 4, 5, 6, 7]
Expected: After successful deploy the environment test1 should be shown in the available tab in gitlab-> Environments section , but instead it is under Stopped.
Could you help me to find out what could be wrong