Skip to content

Commit

Permalink
ads
Browse files Browse the repository at this point in the history
  • Loading branch information
nithyatsu committed Oct 27, 2023
1 parent 66b4d51 commit 05a8050
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,31 @@ env:
CONTAINER_REGISTRY: ${{ github.event.pull_request.number && 'k3d-myregistry.localhost:5050/radius-project/dev' || 'k3d-myregistry.localhost:5050/radius-project' }}
# Set to true to push images to registry.
PUSH_IMAGE: true

jobs:
setup-cluster:
name: create cluster with local registry
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Download k3d
run: wget -q -O - https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash
- name: Create registry
run: k3d registry create myregistry --port 5050
- name: Create k3d cluster
id: create-k3d-cluster
run: |
echo "testing local registry ....................."
k3d cluster create --agents 1 --k3s-arg "--disable=traefik@server:0" --registry-use myregistry:5050
PORT="$(docker ps -f name=mycluster-registry)"
echo "$PORT"
build-ghcr:
name: Build and push sample images to GHCR
if: github.event.action != 'closed'
runs-on: ubuntu-latest
needs: setup-cluster
permissions:
contents: read
packages: write
Expand Down

0 comments on commit 05a8050

Please sign in to comment.