forked from kafbat/kafka-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
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
0ce620c
commit 7343574
Showing
5 changed files
with
72 additions
and
169 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 |
---|---|---|
|
@@ -2,7 +2,6 @@ name: "Infra: Feature Testing: Init env" | |
|
||
on: | ||
workflow_dispatch: | ||
|
||
pull_request: | ||
types: ['labeled'] | ||
|
||
|
@@ -19,61 +18,42 @@ jobs: | |
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
token: ${{ github.token }} | ||
|
||
- name: get branch name | ||
id: extract_branch | ||
run: | | ||
tag='pr${{ github.event.pull_request.number }}' | ||
echo "tag=${tag}" >> $GITHUB_OUTPUT | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'zulu' | ||
cache: 'maven' | ||
- name: Build | ||
|
||
- name: Build Maven Project | ||
id: build | ||
run: | | ||
./mvnw -B -ntp versions:set -DnewVersion=$GITHUB_SHA | ||
./mvnw -B -V -ntp clean package -Pprod -DskipTests | ||
export VERSION=$(./mvnw -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec) | ||
echo "version=${VERSION}" >> $GITHUB_OUTPUT | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Cache Docker layers | ||
uses: actions/cache@v4 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: Configure AWS credentials for Kafka-UI account | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
- name: Build and Push Docker Image | ||
uses: ./.github/workflows/build-docker | ||
with: | ||
tag: ${{ steps.extract_branch.outputs.tag }} | ||
version: ${{ steps.build.outputs.version }} | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: eu-central-1 | ||
- name: Login to Amazon ECR | ||
id: login-ecr | ||
uses: aws-actions/amazon-ecr-login@v2 | ||
- name: Build and push | ||
id: docker_build_and_push | ||
uses: docker/build-push-action@v5 | ||
with: | ||
builder: ${{ steps.buildx.outputs.name }} | ||
context: api | ||
push: true | ||
tags: 297478128798.dkr.ecr.eu-central-1.amazonaws.com/kafka-ui:${{ steps.extract_branch.outputs.tag }} | ||
build-args: | | ||
JAR_FILE=api-${{ steps.build.outputs.version }}.jar | ||
cache-from: type=local,src=/tmp/.buildx-cache | ||
cache-to: type=local,dest=/tmp/.buildx-cache | ||
repository: 297478128798.dkr.ecr.eu-central-1.amazonaws.com/kafka-ui | ||
build-context: api | ||
|
||
outputs: | ||
tag: ${{ steps.extract_branch.outputs.tag }} | ||
|
||
make-branch-env: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|
@@ -89,7 +69,7 @@ jobs: | |
git config --global user.email "[email protected]" | ||
git config --global user.name "infra-tech" | ||
git add ../kafka-ui-from-branch/ | ||
git commit -m "added env:${{ needs.build.outputs.deploy }}" && git push || true | ||
git commit -m "added env:${{ needs.build.outputs.tag }}" && git push || true | ||
- name: update status check for private deployment | ||
if: ${{ github.event.label.name == 'status/feature_testing' }} | ||
|
@@ -98,7 +78,7 @@ jobs: | |
authToken: ${{secrets.GITHUB_TOKEN}} | ||
context: "Click Details button to open custom deployment page" | ||
state: "success" | ||
sha: ${{ github.event.pull_request.head.sha || github.sha }} | ||
sha: ${{ github.event.pull_request.head.sha || github.sha }} | ||
target_url: "http://${{ needs.build.outputs.tag }}.internal.ui.kafbat.dev" | ||
|
||
- name: update status check for public deployment | ||
|
@@ -108,5 +88,5 @@ jobs: | |
authToken: ${{secrets.GITHUB_TOKEN}} | ||
context: "Click Details button to open custom deployment page" | ||
state: "success" | ||
sha: ${{ github.event.pull_request.head.sha || github.sha }} | ||
sha: ${{ github.event.pull_request.head.sha || github.sha }} | ||
target_url: "http://${{ needs.build.outputs.tag }}.internal.ui.kafbat.dev" |
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,8 +1,8 @@ | ||
name: "Infra: CVE checks" | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# * is a special character in YAML so you have to quote this string | ||
- cron: '0 8 15 * *' | ||
|
||
permissions: | ||
|
@@ -17,49 +17,37 @@ jobs: | |
with: | ||
token: ${{ github.token }} | ||
|
||
- name: get branch name | ||
id: extract_branch | ||
run: | | ||
tag='build-${{ github.sha }}' | ||
echo "tag=${tag}" >> $GITHUB_OUTPUT | ||
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'zulu' | ||
cache: 'maven' | ||
|
||
- name: Build project | ||
- name: Build Maven Project | ||
id: build | ||
run: | | ||
./mvnw -B -ntp versions:set -DnewVersion=$GITHUB_SHA | ||
./mvnw -B -V -ntp clean package -DskipTests | ||
export VERSION=$(./mvnw -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec) | ||
echo "version=${VERSION}" >> $GITHUB_OUTPUT | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Cache Docker layers | ||
uses: actions/cache@v4 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: Build docker image | ||
uses: docker/build-push-action@v5 | ||
- name: Build Docker Image (no push) | ||
uses: ./.github/workflows/build-docker | ||
with: | ||
builder: ${{ steps.buildx.outputs.name }} | ||
context: api | ||
platforms: linux/amd64 | ||
push: false | ||
load: true | ||
tags: | | ||
ghcr.io/kafbat/kafka-ui:${{ steps.build.outputs.version }} | ||
build-args: | | ||
JAR_FILE=api-${{ steps.build.outputs.version }}.jar | ||
cache-from: type=local,src=/tmp/.buildx-cache | ||
cache-to: type=local,dest=/tmp/.buildx-cache | ||
tag: ${{ steps.extract_branch.outputs.tag }} | ||
version: ${{ steps.build.outputs.version }} | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: eu-central-1 | ||
repository: ghcr.io/kafbat/kafka-ui | ||
build-context: api | ||
|
||
- name: Run CVE checks | ||
uses: aquasecurity/[email protected] | ||
|
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