0.9.4 • Published 1 year ago

@cdk-cosmos/core v0.9.4

Weekly downloads
299
License
Apache-2.0
Repository
github
Last release
1 year ago

Cosmos Core Package

This Library contains the base components for the CDK Cosmos. It defiles the Core Classes and the Extension Classes for the Core. All other @cdk-cosmos packages will build on top of this core concept.

Basic Understanding

Cosmos is broken down into 3 scopes (Bubbles)

  • Cosmos: Top level scope of the entire infrastructure, mostly singleton shared resources.
  • Galaxy: Account level scope that defines infrastructure for an aws account.
  • SolarSystem: Environment level scope that defines infrastructure for an environment with in an aws account (Dev, Tst, Prd).

Cosmos Core

The Cosmos core contains infrastructure that will be shared by consumers building apps (extensions).

The Core Cosmos is composed of:

  • CosmosStack
    • TLD Zone
    • CDK Repo - for the core cdk code
    • CDK Master Role - for builds of the cdk deployments
  • GalaxyStack
    • If Cross Account, create Cross Account CDK Role for master to assume
  • SolarSystemStack
    • VPC (Created on the Galaxy scope, so that it can be shared by many SolarSystems in the same Galaxy)
    • Zone
  • EcsSolarSystemStack
    • Cluster
    • Alb
    • HttpListener
  • CiCdSolarSystemStack
    • VPC
    • Zone
    • Cluster
    • Alb
    • HttpListener
    • CDK Pipeline + Code Build for Deployment of the core

Example

const cosmos = new CosmosStack(app, 'Demo', {
  tld: 'cosmos.com',
  cidr: '10.0.0.0/22',
});

const mgtGalaxy = new GalaxyStack(cosmos, 'Mgt');

const ciCd = new CiCdSolarSystemStack(mgtGalaxy);

const dev = new EcsSolarSystemStack(mgtGalaxy, 'Dev');

Cosmos Extensions

The Extensions are a way of consuming and adding resources in an isolated way. Each Extension has a Portal Property that is used to consume that core infrastructure for that same bubble.

The Extension of the core are:

  • CosmosExtensionStack
    • Imports Core Cosmos
    • CDK Repo - for the app cdk code
  • GalaxyExtensionStack
    • Imports Core Galaxy
  • SolarSystemExtensionStack
    • Imports Core SolarSystem
  • EcsSolarSystemExtensionStack
    • Imports Core EcsSolarSystem
  • CiCdSolarSystemExtensionStack
    • Imports Core CiCdSolarSystem
    • CDK Pipeline + Code Build for Deployment of the app

Example

const cosmos = new CosmosExtensionStack(app, 'Demo');

const mgtGalaxy = new GalaxyExtensionStack(cosmos, 'Mgt');

const ciCd = new CiCdSolarSystemExtensionStack(mgtGalaxy);

const dev = new EcsSolarSystemExtensionStack(mgtGalaxy, 'Dev');

What is included in the above is just enough for the extension (App) to host its own code and deploy it self. From here we expect consumer to add their own infrastructure to extends from the core, into the respective bubbles.

Further Use

For more extensive understanding and usage, please look at the docs, aka the law of the cosmos

0.9.4

1 year ago

0.9.3

2 years ago

0.9.2

2 years ago

0.9.0

3 years ago

0.9.1

3 years ago

0.8.12

3 years ago

0.8.12-alpha.0

3 years ago

0.8.11

3 years ago

0.8.9

3 years ago

0.8.10

3 years ago

0.8.8

3 years ago

0.8.8-alpha.0

3 years ago

0.8.5

3 years ago

0.8.4

3 years ago

0.8.7

3 years ago

0.8.6

3 years ago

0.8.3

3 years ago

0.8.2

3 years ago

0.8.1

3 years ago

0.8.1-alpha.0

3 years ago

0.8.0-alpha.2

3 years ago

0.8.0-alpha.1

3 years ago

0.8.0

3 years ago

0.8.0-alpha.0

3 years ago

0.7.4

3 years ago

0.7.3

3 years ago

0.7.3-alpha.7

3 years ago

0.7.3-alpha.6

3 years ago

0.7.3-alpha.5

3 years ago

0.7.3-alpha.4

3 years ago

0.7.3-alpha.3

3 years ago

0.7.3-alpha.2

3 years ago

0.7.3-alpha.1

3 years ago

0.7.3-alpha.0

3 years ago

0.7.2

3 years ago

0.7.2-alpha.0

3 years ago

0.7.1

3 years ago

0.7.1-alpha.0

4 years ago

0.7.0

4 years ago

0.7.0-alpha.0

4 years ago

0.6.4

4 years ago

0.6.4-alpha.1

4 years ago

0.6.4-alpha.0

4 years ago

0.6.3

4 years ago

0.6.2

4 years ago

0.6.2-alpha.2

4 years ago

0.6.2-alpha.1

4 years ago

0.6.2-alpha.0

4 years ago

0.6.1-alpha.0

4 years ago

0.6.1

4 years ago

0.6.0

4 years ago

0.6.0-alpha.1

4 years ago

0.6.0-alpha.0

4 years ago

0.5.4

4 years ago

0.5.3

4 years ago

0.5.2

4 years ago

0.5.1

4 years ago

0.5.0

4 years ago

0.4.5

4 years ago

0.4.4

4 years ago

0.4.3

4 years ago

0.4.2

4 years ago

0.4.1

4 years ago

0.4.0

4 years ago

0.3.2

4 years ago

0.3.1

4 years ago

0.3.0

4 years ago

0.2.6

4 years ago

0.2.5

4 years ago

0.2.4

4 years ago

0.2.3

4 years ago

0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago

0.1.0-alpha.10

4 years ago

0.1.0-alpha.9

4 years ago

0.1.0-alpha.8

4 years ago

0.1.0-alpha.4

4 years ago

0.1.0-alpha.3

4 years ago