Skip to content

Update Deployment Details page banners

Julia Miocene requested to merge update-deployment-details-page-banners into master

What does this MR do and why?

  • Replace md illustrations with sm according to documentation
  • Replace old illustration with the new one

MR acceptance checklist

Please evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.

Screenshots or screen recordings

Before After
CleanShot_2024-10-11_at_11.57.19_2x CleanShot_2024-10-11_at_12.05.05_2x
CleanShot_2024-10-11_at_12.03.29_2x CleanShot_2024-10-11_at_12.05.37_2x

How to set up and validate locally

  1. Create a project and add the following .gitlab-ci.yaml file

    stages:
        - deploy
    image: alpine:latest
    
    deploy-prod:
        stage: deploy
        script:
            - sleep 10
            - echo "deploying prod"
        environment:
            name: production
            url: postgres://example.com
        when: manual
    
    deploy-staging:
        stage: deploy
        script:
            - echo "deploying staging"
        environment:
            name: staging
            url: https://example.com
        when: manual
  2. Run the pipeline to create an environment and deployments.

  3. Enable the feature flag deployment_details_page

  4. Locate your deployment on Operate -> Environments -> Production

  5. Click on the status badge to open the Deployment details page

  6. Verify the empty states.

  7. Simulate CE or a license under premium to verify the specific empty state for this case.

#474921 (closed)

Edited by Julia Miocene

Merge request reports

Loading