Skip to content

Commit

Permalink
feat: Added aws-rds promise and operators
Browse files Browse the repository at this point in the history
  • Loading branch information
hgoyal1 committed Jun 11, 2024
1 parent 0f55619 commit d3e8ab8
Show file tree
Hide file tree
Showing 19 changed files with 6,444 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/linters/.gitleaks.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[rules]
[rules.generic-api-key]
files-exclude = ["internal/configure-pipeline/dependencies/cluster-operator.yml"]
files-exclude = ["internal/configure-pipeline/dependencies/operator.yml"]
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ In order to have this pull request merged, complete the following tasks.
- [ ] If this pull request is about and existing issue,
I added the `Fix #ISSUE_NUMBER` label to the description of the pull request.

### Promise Flink maintainer tasks
### Promise aws-rds maintainer tasks

- [ ] Label as `breaking` if this change breaks compatibility with the previous released version.
- [ ] Label as either: `automation`, `bug`, `documentation`, `enhancement`, `infrastructure`.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
id: build-and-push
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
with:
context: shell/internal/configure-pipeline
context: internal/configure-pipeline
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
platforms: linux/amd64,linux/arm64
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

/.idea/
.idea
17 changes: 17 additions & 0 deletions internal/configure-pipeline/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM alpine:3.19 AS build

LABEL org.opencontainers.image.authors "[email protected]"
LABEL org.opencontainers.image.source https://github.com/opencredo/promise-aws-rds

RUN mkdir -p /tmp/transfer /kratix/output
RUN apk update && apk add --no-cache yq

COPY resources /tmp/transfer/resources/
COPY dependencies/ /tmp/transfer/dependencies/
COPY execute-pipeline execute-pipeline

RUN chmod +x execute-pipeline

ENV KRATIX_WORKFLOW_TYPE="promise"
CMD [ "sh", "-c", "./execute-pipeline" ]
ENTRYPOINT []
Loading

0 comments on commit d3e8ab8

Please sign in to comment.