Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implementing CDK Pipelines for resource orchestration #293

Draft
wants to merge 25 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
1a06e98
Removed petfood application
rapgaws Oct 29, 2024
031492d
Added self-mutating pipeline resources
rapgaws Oct 29, 2024
e2c4128
Added needed environment variables for Synth
rapgaws Oct 29, 2024
cca3e97
Added permissions for Synth operation
rapgaws Oct 30, 2024
1481d99
Added Service stage
rapgaws Oct 30, 2024
1b9f06e
Fixed output path for Synth
rapgaws Oct 30, 2024
f3e722b
Move Core network and ECR Repos to the initial stage
rapgaws Oct 30, 2024
30cdb2d
Reorg to create ECR Repos and build projects for each image as part o…
rapgaws Oct 31, 2024
6b6063a
Removed VPC from ImageBuild
rapgaws Oct 31, 2024
fea6c7d
Added ECR permissions to CodeBuild
rapgaws Oct 31, 2024
c37c385
Changed environment variable values source
rapgaws Oct 31, 2024
3a42e96
Removed VPC from Core Stack
rapgaws Oct 31, 2024
22eac8b
CfnOutput renamed for repositories
rapgaws Oct 31, 2024
6e2cf3b
Added base path for container build
rapgaws Oct 31, 2024
1481131
Added missing folder in container path
rapgaws Oct 31, 2024
85e09d1
Update additional Docker base images
rapgaws Oct 31, 2024
1375562
Removed extra folder on C# microservices
rapgaws Oct 31, 2024
af64d47
Added Services stack with local Container images
rapgaws Oct 31, 2024
9a65f76
Added Application Stack
rapgaws Oct 31, 2024
cbdc7cf
Fixed image URI
rapgaws Oct 31, 2024
9e4d255
Fixed error on image name
rapgaws Oct 31, 2024
3a99c96
Renamed pipeline
rapgaws Oct 31, 2024
36a7d2e
Simple test for configuration file
rapgaws Oct 31, 2024
65dbcd9
Set ECR as mutable to allow multiple runs.
rapgaws Oct 31, 2024
43a7e9c
Fixed X-Ray Group definition
rapgaws Oct 31, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Renamed pipeline
  • Loading branch information
rapgaws committed Oct 31, 2024
commit 3a99c964fcadc18f8cf5891e0e5202a22e86363c
2 changes: 1 addition & 1 deletion PetAdoptions/cdk/pet_stack/lib/pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class CDKPipeline extends cdk.Stack {
});

const pipeline = new CodePipeline(this, 'CodePipeline', {
pipelineName: 'PetAdoption',
pipelineName: 'OneObservabilityWorkshopPipeline',
synth: synthStep
});

Expand Down