Skip to content

Commit

Permalink
Provide multi-platform builds in order to support a wider variety of …
Browse files Browse the repository at this point in the history
…(Kubernetes) deployments. (#9026)

Closes #9025
  • Loading branch information
wkoot authored Jun 20, 2024
1 parent 7fe7f70 commit 79410c0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,45 +23,52 @@ jobs:
uses: docker/[email protected]
with:
context: components/database
platforms: linux/amd64,linux/arm64
tags: ictu/quality-time_database:${{ github.ref_name }}
push: true
- name: Push Renderer to Docker Hub
uses: docker/[email protected]
with:
context: components/renderer
platforms: linux/amd64,linux/arm64
tags: ictu/quality-time_renderer:${{ github.ref_name }}
push: true
- name: Push Proxy to Docker Hub
uses: docker/[email protected]
with:
context: components/proxy
platforms: linux/amd64,linux/arm64
tags: ictu/quality-time_proxy:${{ github.ref_name }}
push: true
- name: Push Collector to Docker Hub
uses: docker/[email protected]
with:
context: components
file: components/collector/Dockerfile
platforms: linux/amd64,linux/arm64
tags: ictu/quality-time_collector:${{ github.ref_name }}
push: true
- name: Push Notifier to Docker Hub
uses: docker/[email protected]
with:
context: components
file: components/notifier/Dockerfile
platforms: linux/amd64,linux/arm64
tags: ictu/quality-time_notifier:${{ github.ref_name }}
push: true
- name: Push API-server to Docker Hub
uses: docker/[email protected]
with:
context: components
file: components/api_server/Dockerfile
platforms: linux/amd64,linux/arm64
tags: ictu/quality-time_api_server:${{ github.ref_name }}
push: true
- name: Push Frontend to Docker Hub
uses: docker/[email protected]
with:
context: components/frontend
platforms: linux/amd64,linux/arm64
tags: ictu/quality-time_frontend:${{ github.ref_name }}
push: true
- name: Anchore SBOM Action
Expand Down
1 change: 1 addition & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ If your currently installed *Quality-time* version is not v5.13.0, please first
- Added a [versioning policy](versioning.md) to the documentation. Closes [#8748](https://github.com/ICTU/quality-time/issues/8748).
- Allow for specifying supported source versions in the data model. Show the supported source version in the UI and the reference documentation. Closes [#8786](https://github.com/ICTU/quality-time/issues/8786).
- Show a card in the dashboard with the number of metrics that require action (red, yellow, and white metrics). The card can be hidden via the Settings panel. Clicking the card or setting "Visible metrics" to "Metrics requiring action" in the Settings panel hides metrics that do not require action. Closes [#8938](https://github.com/ICTU/quality-time/issues/8938).
- Provide multi-platform builds in order to support a wider variety of (Kubernetes) deployments. Closes [#9025](https://github.com/ICTU/quality-time/issues/9025).

### Changed

Expand Down

0 comments on commit 79410c0

Please sign in to comment.