Skip to content

Instantly share code, notes, and snippets.

@asishrs
Created September 10, 2020 03:28

Revisions

  1. asishrs created this gist Sep 10, 2020.
    27 changes: 27 additions & 0 deletions deploy-components.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,27 @@
    # XDS Server

    # Build xDS Server
    task xds:build
    # Deploy xDS Server
    task xds:deploy
    # You can run above in a single command
    task xds:build xds:deploy


    # gRPC Server

    # Build gRPC Server
    task server:build
    # Deploy gRPC Server
    task server:deploy
    # You can run above in a single command
    task server:build server:deploy

    # gRPC Client

    # Build gRPC Client
    task client:build
    # Deploy gRPC Client
    task client:deploy
    # You can run above in a single command
    task client:build client:deploy