Skip to content
Merged
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
8 changes: 7 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@ jobs:
run: echo "sha=${{ github.event.workflow_run.head_sha }}" >> "$GITHUB_OUTPUT"

- name: Apply manifests
run: kubectl apply -f k8s/
run: |
kubectl apply -f k8s/namespace.yaml
kubectl apply -f k8s/service.yaml
kubectl apply -f k8s/deployment.yaml
kubectl apply -f k8s/ingress.yaml
# dns.yaml requires external-dns CRD; skip if not installed
kubectl apply -f k8s/dns.yaml 2>/dev/null || echo "Skipping dns.yaml (CRD not installed)"

- name: Update image
run: |
Expand Down
2 changes: 1 addition & 1 deletion k8s/dns.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ spec:
- dnsName: pixelwise.tinyland.dev
recordType: A
targets:
- 159.203.154.10
- 212.2.244.217
recordTTL: 300
Loading