Skip to content

Commit 81e6e68

Browse files
author
Nathan Clonts
committed
feat: bootstrap MWAA Serverless controller
Scaffolding only for the MWAA Serverless (mwaa-serverless) ACK service controller. All resources are listed in ignore.resource_names in generator.yaml, so no resource-specific files are generated. The Workflow resource follows in a separate PR, per the ACK bootstrap -> resource -> release PR-ordering convention.
1 parent 4b679db commit 81e6e68

74 files changed

Lines changed: 4953 additions & 34 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Create Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*.*.*"
7+
8+
permissions:
9+
contents: write # For creating releases
10+
11+
jobs:
12+
call-create-release:
13+
uses: aws-controllers-k8s/.github/.github/workflows/reusable-create-release.yaml@main

.github/workflows/postsubmit.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Hydrate Go Proxy
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
call-hydrate-go-proxy:
10+
uses: aws-controllers-k8s/.github/.github/workflows/reusable-postsubmit.yaml@main

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.DS_Store
2+
*.swp
3+
*~
4+
.idea
5+
.vscode
6+
bin
7+
build
8+
/controller
9+
.env
10+
READ_BEFORE_COMMIT.md
11+
.pytest_cache/
12+
.venv/
13+
__pycache__/
14+
*.pyc

0 commit comments

Comments
 (0)