Skip to content

Add Map/unmap agent actions to Agent auth UI

Issue: FE: Allow users to map an available agent to a ... (#444857 - closed)

What does this MR do and why?

NOTICE This feature is behind the remote_development_namespace_agent_authorization feature flag.

It implements the actions of allowing or blocking a cluster agent in the Agent Authorization UI. From an implementation perspective, these actions invoke two GraphQL mutations that map or unmap a cluster agent to a group.

Previous MRs in this series

Upcoming issues

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

Screenshots are required for UI changes, and strongly recommended for all other merge requests.

Description Screenshot or recording
The following demo demonstrates how the block or unblock operations work agent_mapping_actions_demo.mov

How to set up and validate locally

Numbered steps to set up and validate the change are strongly suggested.

  1. Enable the remote_development_namespace_agent_authorization feature flag: rails c && Feature.enable(:remote_development_namespace_agent_authorization)

  2. Follow these instructions to register two cluster agents in the gitlab-org group:

    1. Create a project in the group gitlab-org named workspaces-agents-config.
    2. Create two directories in the project's repository:
      1. .gitlab/agents/remote-dev
      2. .gitlab/agents/remote-dev-two
  3. In each directory, create a file named config.yaml with the following content

    remote_development:
      enabled: true
      dns_zone: workspaces.localdev.me
      # below configuration is optional
      # they override the default values
      network_policy:
        enabled: true
        # if your GDK is configured on a public IP, you don't need to set the `egress` key in this section.
        egress:
        - allow: '0.0.0.0/0'
          except:
          - '10.0.0.0/8'
          - '172.16.0.0/12'
          - '192.168.0.0/16'
        # if your GDK is configured on a different private IP, use that in the line below.
        - allow: '172.16.123.1/32'
    # for debugging locally to increase log verbosity
    observability:
      logging:
        level: debug
        grpc_level: warn
  4. To connect the cluster agents:

    1. In the workspaces-agent-config project, navigate to Operate -> Kubernetes Clusters.
    2. Click the button "Connect to cluster" and select the "remote-dev" agent. Connect the cluster and close the modal dialog. It doesn't matter if the cluster is not connected.
    3. Repeat step 2 for the "remote-dev-two" agent.
  5. Open the URL http://gdk.test:3000/groups/gitlab-org/-/settings/workspaces

  6. You should see the table populated with one allowed agent and two agents in the "All agents tab"

  7. Click the "Allow" button. The button will transition to a loading state and the agent will become "Allowed". The button label will change to "Block"

  8. Click the "Block" button. A modal dialog will appear confirming if you want to block the agent. If you click the "Block agent" button, the operation in Step 7 will be reverted.

Edited by Enrique Alcántara

Merge request reports

Loading