-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR implements the following changes: * Splits `server` into `dashboard` and `cluster-api` * Renames "agent" to "cluster-agent" * Adds ability to install Kubetail cluster resources from Dashboard UI
- Loading branch information
Showing
243 changed files
with
31,935 additions
and
19,736 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
node_modules | ||
.git | ||
/modules/server/website | ||
/modules/dashboard/website | ||
/dashboard-ui/.env*.local |
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,99 @@ | ||
name: release-cluster-agent | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'cluster-agent/v*' | ||
|
||
jobs: | ||
build-and-publish-amd64: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get tag name | ||
uses: olegtarasov/[email protected] | ||
id: tagName | ||
with: | ||
tagRegex: "cluster-agent/v(.*)" | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Build and push | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: build/package/Dockerfile.cluster-agent | ||
push: true | ||
tags: kubetail/kubetail-cluster-agent:${{ steps.tagName.outputs.tag }}-amd64 | ||
|
||
build-and-publish-arm64: | ||
runs-on: arm64-ubuntu-22 | ||
steps: | ||
- name: Get tag name | ||
uses: olegtarasov/[email protected] | ||
id: tagName | ||
with: | ||
tagRegex: "cluster-agent/v(.*)" | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Build and push | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: build/package/Dockerfile.cluster-agent | ||
push: true | ||
tags: kubetail/kubetail-cluster-agent:${{ steps.tagName.outputs.tag }}-arm64 | ||
|
||
create-and-publish-manifest: | ||
runs-on: ubuntu-latest | ||
needs: [build-and-publish-amd64, build-and-publish-arm64] | ||
steps: | ||
- name: Get tag name | ||
uses: olegtarasov/[email protected] | ||
id: tagName | ||
with: | ||
tagRegex: "cluster-agent/v(.*)" | ||
- name: 'Setup jq' | ||
uses: dcarbone/install-jq-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Create and push manifest | ||
run: | | ||
docker buildx imagetools create -t kubetail/kubetail-cluster-agent:${{ steps.tagName.outputs.tag }} \ | ||
kubetail/kubetail-cluster-agent:${{ steps.tagName.outputs.tag }}-amd64 \ | ||
kubetail/kubetail-cluster-agent:${{ steps.tagName.outputs.tag }}-arm64 | ||
- name: Fetch docker token | ||
run: | | ||
TOKEN=$(curl -X POST "https://hub.docker.com/v2/users/login" -H "Content-Type: application/json" -d '{"username": "${{ secrets.DOCKERHUB_USERNAME }}", "password": "${{ secrets.DOCKERHUB_TOKEN }}"}' | jq -r '.token') | ||
echo "TOKEN=$TOKEN" >> $GITHUB_ENV | ||
- name: Delete extra arch manifests | ||
run: | | ||
declare -a archs=("amd64" "arm64") | ||
for arch in "${archs[@]}" | ||
do | ||
RESPONSE=$(curl -s -w "%{http_code}" \ | ||
-X DELETE \ | ||
-H "Authorization: Bearer $TOKEN" \ | ||
"https://hub.docker.com/v2/repositories/kubetail/kubetail-cluster-agent/tags/${{ steps.tagName.outputs.tag }}-$arch") | ||
if [ "$RESPONSE" -ne 204 ]; then | ||
echo "DELETE for $arch failed with status $RESPONSE" | ||
exit 1 | ||
fi | ||
done |
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,9 +1,9 @@ | ||
name: release-server | ||
name: release-cluster-api | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'server/v*' | ||
- 'cluster-api/v*' | ||
|
||
jobs: | ||
build-and-publish-amd64: | ||
|
@@ -13,7 +13,7 @@ jobs: | |
uses: olegtarasov/[email protected] | ||
id: tagName | ||
with: | ||
tagRegex: "server/v(.*)" | ||
tagRegex: "cluster-api/v(.*)" | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up Docker Buildx | ||
|
@@ -27,9 +27,9 @@ jobs: | |
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: build/package/Dockerfile.server | ||
file: build/package/Dockerfile.cluster-api | ||
push: true | ||
tags: kubetail/kubetail-server:${{ steps.tagName.outputs.tag }}-amd64 | ||
tags: kubetail/kubetail-cluster-api:${{ steps.tagName.outputs.tag }}-amd64 | ||
|
||
build-and-publish-arm64: | ||
runs-on: arm64-ubuntu-22 | ||
|
@@ -38,7 +38,7 @@ jobs: | |
uses: olegtarasov/[email protected] | ||
id: tagName | ||
with: | ||
tagRegex: "server/v(.*)" | ||
tagRegex: "cluster-api/v(.*)" | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up Docker Buildx | ||
|
@@ -52,9 +52,9 @@ jobs: | |
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: build/package/Dockerfile.server | ||
file: build/package/Dockerfile.cluster-api | ||
push: true | ||
tags: kubetail/kubetail-server:${{ steps.tagName.outputs.tag }}-arm64 | ||
tags: kubetail/kubetail-cluster-api:${{ steps.tagName.outputs.tag }}-arm64 | ||
|
||
create-and-publish-manifest: | ||
runs-on: ubuntu-latest | ||
|
@@ -64,7 +64,7 @@ jobs: | |
uses: olegtarasov/[email protected] | ||
id: tagName | ||
with: | ||
tagRegex: "server/v(.*)" | ||
tagRegex: "cluster-api/v(.*)" | ||
- name: 'Setup jq' | ||
uses: dcarbone/install-jq-action@v2 | ||
- name: Set up Docker Buildx | ||
|
@@ -76,9 +76,9 @@ jobs: | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Create and push manifest | ||
run: | | ||
docker buildx imagetools create -t kubetail/kubetail-server:${{ steps.tagName.outputs.tag }} \ | ||
kubetail/kubetail-server:${{ steps.tagName.outputs.tag }}-amd64 \ | ||
kubetail/kubetail-server:${{ steps.tagName.outputs.tag }}-arm64 | ||
docker buildx imagetools create -t kubetail/kubetail-cluster-api:${{ steps.tagName.outputs.tag }} \ | ||
kubetail/kubetail-cluster-api:${{ steps.tagName.outputs.tag }}-amd64 \ | ||
kubetail/kubetail-cluster-api:${{ steps.tagName.outputs.tag }}-arm64 | ||
- name: Fetch docker token | ||
run: | | ||
TOKEN=$(curl -X POST "https://hub.docker.com/v2/users/login" -H "Content-Type: application/json" -d '{"username": "${{ secrets.DOCKERHUB_USERNAME }}", "password": "${{ secrets.DOCKERHUB_TOKEN }}"}' | jq -r '.token') | ||
|
@@ -91,7 +91,7 @@ jobs: | |
RESPONSE=$(curl -s -w "%{http_code}" \ | ||
-X DELETE \ | ||
-H "Authorization: Bearer $TOKEN" \ | ||
"https://hub.docker.com/v2/repositories/kubetail/kubetail-server/tags/${{ steps.tagName.outputs.tag }}-$arch") | ||
"https://hub.docker.com/v2/repositories/kubetail/kubetail-cluster-api/tags/${{ steps.tagName.outputs.tag }}-$arch") | ||
if [ "$RESPONSE" -ne 204 ]; then | ||
echo "DELETE for $arch failed with status $RESPONSE" | ||
exit 1 | ||
|
Oops, something went wrong.