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

Update deployment CI to pull manifest from infra repo #1108

Merged
merged 1 commit into from
Sep 19, 2023
Merged
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
8 changes: 3 additions & 5 deletions .github/workflows/build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,11 @@ jobs:
environment: production

steps:
# Check out the private Kubernetes repository for the
# deployment.yaml file using a GitHub Personal Access
# Token to get access.
- name: Checkout code
uses: actions/checkout@v4
with:
repository: python-discord/kubernetes
repository: python-discord/infra
path: infra

- uses: azure/setup-kubectl@v3

Expand All @@ -78,7 +76,7 @@ jobs:
uses: Azure/k8s-deploy@v4
with:
manifests: |
namespaces/default/site/deployment.yaml
infra/kubernetes/namespaces/default/site/deployment.yaml
ChrisLovering marked this conversation as resolved.
Show resolved Hide resolved
images: 'ghcr.io/python-discord/site:${{ inputs.sha-tag }}'

- name: Purge Cloudflare Edge Cache
Expand Down