-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c48cc8b
commit ca2c530
Showing
6 changed files
with
209 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
scms: | ||
cruise-control: | ||
kind: github | ||
spec: | ||
owner: "linkedin" | ||
repository: "cruise-control" | ||
token: {{ requiredEnv "GITHUB_TOKEN" }} | ||
branch: "main" | ||
sources: | ||
aws-msk-iam-auth: | ||
kind: githubrelease | ||
spec: | ||
owner: "aws" | ||
repository: "aws-msk-iam-auth" | ||
token: {{ requiredEnv "GITHUB_TOKEN" }} | ||
versionFilter: | ||
kind: semver | ||
transformers: | ||
- trimprefix: "v" | ||
cruise-control: | ||
kind: gittag | ||
scmid: cruise-control | ||
spec: | ||
versionfilter: | ||
kind: semver | ||
cruise-control-ui: | ||
kind: githubrelease | ||
spec: | ||
owner: "linkedin" | ||
repository: "cruise-control-ui" | ||
token: {{ requiredEnv "GITHUB_TOKEN" }} | ||
versionFilter: | ||
kind: semver | ||
transformers: | ||
- trimprefix: "v" | ||
conditions: {} | ||
targets: | ||
update-aws-msk-iam-auth-version: | ||
name: "Update the value of ARG AWS_MSK_IAM_AUTH_VERSION in the Dockerfile" | ||
sourceid: aws-msk-iam-auth | ||
kind: dockerfile | ||
spec: | ||
file: Dockerfile | ||
instruction: | ||
keyword: "ARG" | ||
matcher: "AWS_MSK_IAM_AUTH_VERSION" | ||
update-cc-tag: | ||
name: "Update the value of ARG CC_TAG in the Dockerfile" | ||
sourceid: cruise-control | ||
kind: dockerfile | ||
spec: | ||
file: Dockerfile | ||
instruction: | ||
keyword: "ARG" | ||
matcher: "CC_TAG" | ||
update-cc-ui-tag: | ||
name: "Update the value of ARG CC_UI_TAG in the Dockerfile" | ||
sourceid: cruise-control-ui | ||
kind: dockerfile | ||
spec: | ||
file: Dockerfile | ||
instruction: | ||
keyword: "ARG" | ||
matcher: "CC_UI_TAG" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pr-output.log |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG OPENJDK_VERSION=11 | ||
ARG OPENJDK_VERSION=17 | ||
|
||
FROM amazoncorretto:${OPENJDK_VERSION} as base | ||
|
||
|