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
41 changes: 1 addition & 40 deletions .github/workflows/earthly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,43 +50,4 @@ jobs:
patreon-saasproxy.tags=ghcr.io/xe/site/patreon-saasproxy:latest
xesite.tags=ghcr.io/xe/site/bin:latest

deploy:
name: "Deploy xesite"
needs: build
runs-on: alrest-xe-site
if: github.ref == 'refs/heads/main'
permissions:
contents: read

steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
src:
- 'cmd/**/*.go'
- 'internal/**/*.go'
- 'pb/*'
- 'pb/**/*'
- 'go.mod'
- 'go.sum'
- 'docker/*'
- "docker-bake.hcl"
- 'manifest/**/*.yaml'
- uses: azure/setup-kubectl@v4
if: steps.changes.outputs.src == 'true'
- name: Save Civo kubeconfig
if: steps.changes.outputs.src == 'true'
run: |
curl -sL https://civo.com/get | sudo sh
civo apikey add default $CIVO_TOKEN
civo apikey current default
civo kubernetes config --region phx1 aeacus --save --switch
env:
CIVO_TOKEN: ${{ secrets.CIVO_TOKEN }}
- name: "Deploy"
if: steps.changes.outputs.src == 'true'
run: |
kubectl apply -k manifest
kubectl rollout restart -n default deploy/xesite

9 changes: 9 additions & 0 deletions lume/src/blog/2024/hello-again-k8s.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ tags:
- civo
---

import Admonition from "../../_components/Admonition.jsx";

<Admonition type="note" title="Editor's note (2025-11-01)">
This blog post describes the initial migration of my website to Civo Kubernetes.
Since this was written, the site has been migrated from Civo to Vultr Kubernetes Engine.
The deployment details and provider-specific information in this post are historical
and no longer reflect the current setup.
</Admonition>

[Previously on Xesite](/blog/k8s-pondering-2020-12-31/):

> I think I made a mistake when I decided to put my cards into Kubernetes for my personal setup. It made sense at the time (I was trying to learn Kubernetes and I am cursed into learning by doing), however I don't think it is really the best choice available for my needs.
Expand Down