Skip to content

Latest commit

 

History

History
56 lines (39 loc) · 1.9 KB

02-control-plane.md

File metadata and controls

56 lines (39 loc) · 1.9 KB

2. Install Control Plane

In this page, you will install a Control Plane on local by docker-compose.

Installation

  1. Execute the following command on your src/install/control-plane/docker-compose.yaml.

    docker-compose up

    After the command, you will see logs as below.

    pipecd-server-1   | successfully loaded control-plane configuration
    pipecd-server-1   | successfully connected to file store
    pipecd-server-1   | successfully connected to data store
    pipecd-server-1   | grpc server will be run without tls
    pipecd-server-1   | grpc server will be run without tls
    pipecd-server-1   | grpc server is running on [::]:9080
    pipecd-server-1   | grpc server is running on [::]:9083
    pipecd-server-1   | grpc server will be run without tls
    pipecd-server-1   | admin server is running on 9085
    pipecd-server-1   | grpc server is running on [::]:9081
    pipecd-server-1   | start running http server on :9082
    

Confirmation

  1. Access the console running on http://localhost:8080

  2. Enter the following value and click CONTINUE.

    • Project Name: tutorial

    signin-project

  3. Enter the following values and click LOGIN.

    • Username: hello-pipecd
    • Password: hello-pipecd

    signin-user

  4. If successful, the following page will appear.

    applications-page

See Also


Next: 3. Install Piped >

< Previous: 1. Setup Git Repository