infrastructure

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
infrastructure [2022-07-24 00:43] – created asdfinfrastructure [2023-05-08 06:04] (current) asdf
Line 1: Line 1:
 ====== Infrastructure ====== ====== Infrastructure ======
 My personal computing cloud. As many components as possible should be available to me regardless of my current location --- my life is far too mobile to be reliant on local access. My personal computing cloud. As many components as possible should be available to me regardless of my current location --- my life is far too mobile to be reliant on local access.
 +
 +Check out [[https://github.com/awesome-selfhosted/awesome-selfhosted#readme|awesome-selfhosted]] for more ideas.
  
 ===== Active machines ===== ===== Active machines =====
 ==== sinensis ==== ==== sinensis ====
-My primary workhorse. Serves Jupyter, Gotify, static webpages, and probably some test software I forgot to uninstall.+My primary workhorse. Serves Jupyter, Gotify, this [[DokuWiki]] PKB, and probably some test software I forgot to uninstall.
  
 ===== Inactive machines ===== ===== Inactive machines =====
Line 12: Line 14:
 Hosted (hosting?) a Gitea instance. Hosted (hosting?) a Gitea instance.
  
-===== Future plans ===== +===== Future ideas ===== 
-==== Dockerize services ==== +<WRAP center round todo 60%> 
-[[Docker]] is proving to be great fun. It's great to be able to start these services and have them //work//. It's also easier to clean up after testing new services. And I think something something isolation+Migrate this section to [[:rnd:sketchpad]]? 
- +</WRAP>
-I'll need to figure out how to provide public access to containerized services. Properly-configured [[nginx]] proxies should suffice (and provide HTTPS), but I'll need to make sure the headers are forwarded correctly and so on.+
  
 ==== NextCloud instance ==== ==== NextCloud instance ====
Line 22: Line 23:
  
 The current plan is to install the instance on a Raspberry Pi, which will allow me to have full hands-on access to the storage media. This may complicate global access, as I have little control over port forwarding at my current residence. See "5G Hotspots and Tinc" in 38:1 of 2600 for a possible solution to this exact problem. The current plan is to install the instance on a Raspberry Pi, which will allow me to have full hands-on access to the storage media. This may complicate global access, as I have little control over port forwarding at my current residence. See "5G Hotspots and Tinc" in 38:1 of 2600 for a possible solution to this exact problem.
 +
 +Currently installed on the Raspberry Pi and the reverse proxy is functional. <del>Note that some finagling will be necessary to get CalDAV to work; see [[https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/reverse_proxy_configuration.html#nginx|here]] for NGINX instructions.</del> This expected finagling seems to have been unnecessary, as bidirectional calendar sync is working just fine without it. The next step is to prepare the hard drive that will back the data store, mount it at ''/srv/nextcloud'', and point the containers at it. 
 +
 +I'm not thrilled by the speeds I've seen thus far, but it's hard to tell where the bottleneck is. Ping times through the VPN from my laptop to the Pi average ~350 ms, and with NextCloud configured for reverse proxy, it's impossible to test its local performance (even navigating to its internal IP redirects to sinensis). The problem could simply be CPU usage at the node itself. It's not that big a deal, but it does warrant notice.
 +
 +==== Airflow ====
 +A DAG-based automation tool. Think cron, but with task designations arranged in Python and built as graphs. What I'd like to do is migrate my JQL monitoring script to Airflow and have it [[https://airflow.apache.org/docs/apache-airflow/2.3.0/concepts/dynamic-task-mapping.html#task-generated-mapping|dynamically generate]] the notification tasks. The same general outline can be applied to other watch tasks (e.g. watching product sites to tell me when they're available). During my quick experimentation session, I developed a custom Gotify operator for Airflow that I can leverage for future work.
 +
 +The problem is that Airflow seems to be fairly CPU-intensive. The basic docker-compose config easily maxed out my laptop's processor all on its own, so it will absolutely murder sinensis. A Raspberry Pi (with large RAM) might do the trick---I'll just need to tunnel the webserver for roaming access. 
 +
 +==== Glances instance ====
 +[[http://nicolargo.github.io/glances/|Glances]] is a system monitor with a variety of export modes. It also features a web interface and client/server mode (where the server //pushes// stats to the client). It can be [[https://glances.readthedocs.io/en/latest/docker.html|run in Docker]], and it can [[https://glances.readthedocs.io/en/latest/aoa/docker.html|monitor Docker containers]].
 +==== Emulated machine terrarium ====
 +Set up a number of emulated [[:histcomp:|historic systems]] (ITS, MULTICS, maybe some Research Unix) for my own pleasure and play. Make sure they can be remotely accessed.
  
 ==== croc ==== ==== croc ====
 May not be necessary with NextCloud, but I would like to try it out. There's even a [[https://hub.docker.com/r/schollz/croc|Docker image]]! May not be necessary with NextCloud, but I would like to try it out. There's even a [[https://hub.docker.com/r/schollz/croc|Docker image]]!
  
-==== Yet another PKB ==== +==== Minecraft server ==== 
-This time we're test driving [[DokuWiki]].+Unfortunately, this will not be able to run on sinensis, at least not without some hardware upgrades. Maybe I can run this in Docker as well? 
 + 
 +[[tinc]] combined with an [[nginx]] reverse proxy has proven to be successful for making the server publicAdding the following snippet to ''nginx.conf'' will suffice:
  
 +<code>
 +stream {
 +    server {
 +        listen ADDR;
 +        proxy_pass minecraft;
 +    }
 +    
 +    upstream minecraft {
 +        server ADDR:PORT;
 +    }
 +}
 +</code>
 ==== Mininet ==== ==== Mininet ====
 A small [[Raspberry Pi]] cluster for hosting my experiments into distributed computing. A small [[Raspberry Pi]] cluster for hosting my experiments into distributed computing.
  
 +==== Owncast ====
 +Not exactly an active plan, but I have needed an RTMP destination once or twice. [[https://owncast.online/|Owncast]] might be a handy tool for that purpose should the need arise again.
  • infrastructure.1658623397.txt.gz
  • Last modified: 2022-07-24 00:43
  • by asdf