Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: amphitheatre-app/amphitheatre
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.8.19
Choose a base ref
...
head repository: amphitheatre-app/amphitheatre
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
29 changes: 0 additions & 29 deletions .cirun.yml

This file was deleted.

7 changes: 5 additions & 2 deletions .env.sample
Original file line number Diff line number Diff line change
@@ -15,5 +15,8 @@ AMP_NATS_URL=nats://amp-nats.amp-system.svc:4222
# The workspace path.
AMP_WORKSPACE=/workspace

# The storage class name. The default is `local-path` on k3s.
AMP_STORAGE_CLASS_NAME=local-path
# Persistent Volume storage class name, the default is `standard`.
AMP_PV_STORAGE_CLASS_NAME=standard

# Persistent Volume access mode, the default is `ReadWriteOnce`.
AMP_PV_ACCESS_MODE=ReadWriteOnce
8 changes: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -13,11 +13,11 @@ permissions:
jobs:
build:
name: Build Image
runs-on: "cirun-aws-${{ matrix.platform }}--${{ github.run_id }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
platform: [amd64, arm64]
platform: [linux/amd64,linux/arm64]
bin: [amp-apiserver, amp-controllers, amp-syncer]
include:
- bin: amp-apiserver
@@ -51,11 +51,11 @@ jobs:

- name: Build and push image by digest
id: build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ${{ matrix.dockerfile }}
platforms: linux/${{ matrix.platform }}
platforms: ${{ matrix.platform }}
labels: ${{ steps.meta.outputs.labels }}
outputs: type=image,name=${{ env.IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true
provenance: false
Loading