Compare commits

..

2 Commits

Author SHA1 Message Date
renovate-bot 19d867ec9f chore(deps): update dependency eslint to v10.4.0
renovate/stability-days Updates have met minimum release age requirement
test-build / build (pull_request) Successful in 1m41s
test-build / guarddog (pull_request) Successful in 43s
2026-05-16 18:02:40 +00:00
renovate-bot f30b350685 fix(deps): update astro monorepo
renovate/stability-days Updates have met minimum release age requirement
test-build / build (pull_request) Successful in 1m45s
test-build / guarddog (pull_request) Successful in 1m44s
test-build / build (push) Successful in 1m56s
test-build / guarddog (push) Successful in 1m20s
renovate / renovate (push) Successful in 2m26s
2026-05-15 18:02:12 +00:00
4 changed files with 1 additions and 94 deletions
-21
View File
@@ -1,24 +1,3 @@
# [0.34.0](http://gitea-http.gitea:3000/alexlebens/site-documentation/compare/0.33.1...0.34.0) (2026-05-17)
### Bug Fixes
* **deps:** update astro monorepo ([3162755](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/3162755c527ee8923e47d657921966c379b0de51))
### Features
* add guide for Komodo ([1d5f5e1](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/1d5f5e16e817f716f3efcd09167fe1952091a457))
* highlight links ([3914e3a](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/3914e3aab3de30cdae73e0e1502444d35bc04657))
## [0.33.1](http://gitea-http.gitea:3000/alexlebens/site-documentation/compare/0.33.0...0.33.1) (2026-05-13)
### Bug Fixes
* **deps:** update astro monorepo ([1ba3471](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/1ba34713fc080594bb3072434110020b80b3c6e9))
* **deps:** update dependency sanitize-html to v2.17.4 ([6c72bab](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/6c72bab2cf6ac47011c6449d0b4c9d2808312100))
# [0.33.0](http://gitea-http.gitea:3000/alexlebens/site-documentation/compare/0.32.0...0.33.0) (2026-05-13)
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "site-documentation",
"type": "module",
"version": "0.34.0",
"version": "0.33.0",
"scripts": {
"dev": "astro dev",
"build": "astro build",
@@ -1,68 +0,0 @@
---
title: Update Komodo Hosts
description: Steps followed to update the Periphery Agents on Komodo managed hosts.
hero:
tagline: Steps followed to update the Periphery Agents on Komodo managed hosts.
image:
file: https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/komodo.webp
---
import { Aside } from '@astrojs/starlight/components';
import { Steps } from '@astrojs/starlight/components';
<Aside type="tip">Find the latest documentation from Komodo [here](https://komo.do/docs/intro).</Aside>
<Aside type="tip">Find the local Application documentation [here](https://docs.alexlebens.dev/applications/komodo/).</Aside>
# Systemd hosts
These hosts are on the same network as Komodo and have direct access. For simplicity, they run as a [systemd](https://systemd.io/) service.
SSH to the host and run the following command. This command is repeatable and non-destructive and will update to the latest version.
````bash
curl -sSL https://raw.githubusercontent.com/moghtech/komodo/main/scripts/setup-periphery.py | python3 - \
--core-address="https://komodo.alexlebens.net"
````
# Docker hosts
These hosts are not on the network and need some kind of VPN connection, such as [Tailscale](https://tailscale.com/). Because of this requirement it becomes simpler to use containers and [Docker networks](https://docs.docker.com/engine/network/).
The hosts should have their [compose](https://docs.docker.com/compose/) files defined in the [infrastructure repository](https://gitea.alexlebens.dev/alexlebens/infrastructure/src/branch/main/hosts). Therefore, [Renovate](https://gitea.alexlebens.dev/alexlebens/infrastructure/actions?workflow=renovate.yaml&actor=0&status=0) will make updates to those files.
<Steps>
1. SSH to the host and switch user to root.
````bash
ssh <hostname>
````
2. Change directory to where the local git folder is. This can vary per host, but the default should be in the /opt/compose folder.
````bash
cd /opt/compose/infrastructure
````
3. Pull the latest changes.
````bash
git pull
````
4. Change directory to the host and Komodo app.
````bash
cd /opt/compose/infrastructure/hosts/<host>/komodo-periphery
````
5. Bring down the current stack.
````bash
docker compose down
````
5. Bring down the stack back up. This should pull the latest image.
````bash
docker compose up -d
````
6. Verify updates on the Komodo servers page.
````
[https://komodo.alexlebens.net/servers](https://komodo.alexlebens.net/servers)
````
</Steps>
-4
View File
@@ -31,8 +31,4 @@
.site-title:where(.astro-gmuhlsjs) {
color: var(--color-turquoise);
}
div.sl-markdown-content a {
color: var(--color-turquoise);
}
}