Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft of Uffizzi integration #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions .github/workflows/call-docker-build-promote.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
contents: read
packages: write
pull-requests: write
uses: mostlydevops/actions/.github/workflows/reusable-docker-build.yaml@main
uses: UffizziCloud/MostlyDevOps-actions/.github/workflows/reusable-docker-build.yaml@main
with:
# DON'T login to or push to Docker Hub
dockerhub-enable: false
Expand All @@ -43,7 +43,7 @@ jobs:
needs: docker-build-pr
permissions:
packages: read
uses: mostlydevops/actions/.github/workflows/reusable-trivy-scan-image.yaml@main
uses: UffizziCloud/MostlyDevOps-actions/.github/workflows/reusable-trivy-scan-image.yaml@main
secrets:
registry-username: ${{ github.actor }}
registry-password: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -53,6 +53,21 @@ jobs:
severity: HIGH,CRITICAL
ignore-unfixed: true

deploy-uffizzi:
name: Deploy to Uffizzi
if: github.event_name == 'pull_request'
needs: docker-build-pr
uses: UffizziCloud/MostlyDevOps-actions/.github/workflows/reusable-uffizzi.yaml@main
secrets:
github-token: ${{ secrets.GITOPS_WORDSMITH_K8S }}
uffizzi-password: ${{ secrets.UFFIZZI_PASSWORD }}
with:
repo: UffizziCloud/MostlyDevOps-wordsmith-k8s
environment-dir: uffizzi
image: ghcr.io/${{ github.repository }}
tag: ${{ needs.docker-build-pr.outputs.image-tag }}
pr-number: ${{ github.event.number }}

#### MERGE TO MAIN ####
docker-build-merge:
name: Call Build on Push
Expand All @@ -61,7 +76,7 @@ jobs:
contents: read
packages: write
pull-requests: write
uses: mostlydevops/actions/.github/workflows/reusable-docker-build.yaml@main
uses: UffizziCloud/MostlyDevOps-actions/.github/workflows/reusable-docker-build.yaml@main
with:
dockerhub-enable: false
ghcr-enable: true
Expand All @@ -79,7 +94,7 @@ jobs:
name: Call GitOps PR
if: github.event_name == 'push'
needs: docker-build-merge
uses: mostlydevops/actions/.github/workflows/reusable-gitops-pr.yaml@main
uses: UffizziCloud/MostlyDevOps-actions/.github/workflows/reusable-gitops-pr.yaml@main
secrets:
github-token: ${{ secrets.GITOPS_WORDSMITH_K8S }}
with:
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/call-uffizzi-delete.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Close Pull Request

on:
pull_request:
types: [closed]

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true

jobs:
delete-uffizzi:
name: Delete Uffizzi virtual cluster
uses: UffizziCloud/MostlyDevOps-actions/.github/workflows/reusable-uffizzi-delete.yaml@main
secrets:
github-token: ${{ secrets.GITOPS_WORDSMITH_K8S }}
uffizzi-password: ${{ secrets.UFFIZZI_PASSWORD }}
with:
pr-number: ${{ github.event.number }}