npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@richicoder/cdk-ecs-s3volume

v0.6.0

Published

A helper library for copying from s3 at ECS startup.

Downloads

17

Readme

@richicoder/cdk-ecs-s3volume

An ECS Task Extension that mounts a volume to ECS container(s) and either copies a local file or files from a bucket into that volume.

Useful as a replacement for ConfigMap in EKS since there is (currently) no native ECS equivalent.

Usage

Install:

npm i @richicoder/cdk-ecs-s3volume

Adding a file

taskDefinition.addExtension(S3Volume.fromAsset('stacks/config-prod.yml', '/etc/config/config-prod.yaml'/*, options */));

This will result in stacks/config-prod.yml being available read-only in the container at /etc/config/config-prod.yaml.

Important: fromAsset only supports a single file. To copy multiple files, use your own bucket with s3-deployment and the steps below.

Adding a bucket's contents

const bucket: Bucket
taskDefinition.addExtension(S3Volume.fromBucket(bucket/*, options */));
/* or */
taskDefinition.addExtension(new S3Volume('ConfigVolume', {
  bucket: 'my-config-bucket',
}));

Assuming a bucket with name my-config-bucket and objects config.yml and config-prod.yml, this will result in a readOnly volume at /etc/s3/my-config-bucket/ containing the files config.yml and config-prod.yml.

Results in a readOnly volume at /etc/config/ with file config-prod.yml.

Overriding container path

The path in the container defaults to /etc/s3/${bucketName}/* but can be overidden by passing containerPath to options.

taskDefinition.addExtension(new S3Volume('ConfigVolume', {
  bucket: 'my-data-bucket',
  containerPath: `/data/my-data/`
}));

Copying multiple local files

Sometimes you might want to copy multiple files from local source into a container. To do this, you can combine bucket volumes with CDK's Bucket Deployment construct.

const configBucket = new s3.Bucket(this, 'ConfigBucket');

new s3deploy.BucketDeployment(this, 'Configs', {
  sources: [s3deploy.Source.asset('./configs')],
  destinationBucket: configBucket,
});

taskDefinition.addExtension(S3Volume.fromBucket(configBucket));

or when using a shared bucket, you might want to use a specific key path:

const configBucket: Bucket;

new s3deploy.BucketDeployment(this, 'Configs', {
  sources: [s3deploy.Source.asset('./configs')],
  destinationBucket: configBucket,
  destinationKeyPrefix: 'my/service',
});

taskDefinition.addExtension(S3Volume.fromBucket(configBucket, {
  // See https://docs.aws.amazon.com/cli/latest/reference/s3/index.html#use-of-exclude-and-include-filters for more details
  extraOptions: [`--exclude="*"`, `--include="my/service/*"`]
}));

API

API