Skip to content

globaldatanet/copilot-war-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Copilot War Demo

The companion-repo for a future AWS partner blog post.

Initial Setup

In these first steps we will setup a demo web service, along with scheduled jobs to start and shutdown these services in the morning and evening. This is done for cost saving purposes.

  1. Fork the repo and check it out locally.

    • This is needed for the pipeline we're going to deploy further down the road. You will need your own repo on github so copilot can create the pipeline for it.
  2. Setup a demo webservice

    copilot init
    • Application name: blogpost-demo
    • Workload type: Load Balanced Web Service
    • Service name: nyan
    • Dockerfile: ./Dockerfile
    • Answer "yes" if you're asked if you want a test environment. This will be the one we're using for this demo.

Deploying Shutdown Scheduling Jobs for Cost Saving

  1. Deploy the copilot job which stop the containers in the evening

    1. Initialization

      copilot job init --name stop-containers

      It does not matter which details you configure, they will be dismissed and instead read from the manifest file.

    2. Deployment

      copilot job deploy --name stop-containers --env test
  2. Deploy the copilot job which starts the containers in the morning

    1. Initialization

      copilot job init --name start-containers

      It does not matter which details you configure, they will be dismissed and instead read from the manifest file.

    2. Deployment

      copilot job deploy --name start-containers --env test

Deploying a Codepipeline with Container Security Checks

  1. Initialize the pipeline

    copilot pipeline init
  2. Update the buildspec with the security checks. To add a security check using hadolint simply add the following two steps to the generated copilot/buildspec.yaml where it says "Run your tests":

    docker pull ghcr.io/hadolint/hadolint
    docker run --rm -i ghcr.io/hadolint/hadolint < Dockerfile
  3. Commit and push those changes to your fork

  4. Deploy the pipeline

    copilot pipeline update
    • Activate the github connection when asked
    • The pipeline will now already be triggered
  5. Verify that the security check has indeed been executed.

    • Search for "Run your tests" to find the testing section.

Cleanup

Finally, it's time to clean up the created resources.

copilot job delete
copilot job delete
copilot app delete

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published