From 6019c0187503886bc30316c1af6c2154891b6521 Mon Sep 17 00:00:00 2001 From: Magic_RB Date: Wed, 31 Mar 2021 12:45:17 +0200 Subject: [PATCH] Add dates and blog cleanup Signed-off-by: Magic_RB --- blog/emacs-the-journey-to-an-operating-system.org | 2 ++ blog/index.org | 2 -- blog/on-databases-docker-and-nix.org | 2 ++ blog/scalable-concourseci-with-nomad-and-nix.org | 7 ++++--- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/blog/emacs-the-journey-to-an-operating-system.org b/blog/emacs-the-journey-to-an-operating-system.org index 7b89d43..0026299 100644 --- a/blog/emacs-the-journey-to-an-operating-system.org +++ b/blog/emacs-the-journey-to-an-operating-system.org @@ -1,4 +1,6 @@ #+TITLE: Emacs, the Journey to an Operating System +#+DATE: <2020-09-27 Sun> + * The Age without Emacs It's the 12th of February, I'm playing Factorio on my laptop, when the bell rings and not long after my Biology teacher enters the classroom, I quickly save and exit out of Factorio. After the diff --git a/blog/index.org b/blog/index.org index 5c9a955..860277d 100644 --- a/blog/index.org +++ b/blog/index.org @@ -1,3 +1 @@ #+INCLUDE: sitemap.inc - -Testing subscript, emacs_is_awesome is not subscripted but F_{g} is. diff --git a/blog/on-databases-docker-and-nix.org b/blog/on-databases-docker-and-nix.org index 2bb6c78..6629a77 100644 --- a/blog/on-databases-docker-and-nix.org +++ b/blog/on-databases-docker-and-nix.org @@ -1,4 +1,6 @@ #+TITLE: On Docker Databases and Nixos +#+DATE: <2020-09-28 Mon> + While learning Hashicorp Nomad+Vault+Consul, I decided that I'd convert all the Docker containers I use currently, into their Nix-ified forms. In other words, I'd rewrite the ones I had, but I'd based them on NixOS, a truly declarative enviroment, unlike /ehm/ all the other base images... Well, I didn't realize how *hard* it is to diff --git a/blog/scalable-concourseci-with-nomad-and-nix.org b/blog/scalable-concourseci-with-nomad-and-nix.org index 99f2df4..7b0d971 100644 --- a/blog/scalable-concourseci-with-nomad-and-nix.org +++ b/blog/scalable-concourseci-with-nomad-and-nix.org @@ -1,4 +1,5 @@ #+TITLE: Scalable ConcourseCI with Nomad and Nix +#+DATE: <2021-02-14 Sun> In this blog post, I will explain to you how you can deploy ConcourseCI on HashiCorp Nomad with fully automatic and Op-free scaling. We will utilize 3 HashiCorp tools, namely Nomad, Vault, and Consul, then PosgresSQL, Nix (not @@ -77,14 +78,14 @@ necessary, can be replaced) and finally ConcourseCI itself. *** Policies We'll need 3 policies, =concourse-web-policy=, =concourse-worker-policy= and =concourse-db-policy=. - #+TITLE: concourse-db-policy.hcl + #+NAME: concourse-db-policy.hcl #+BEGIN_SRC hcl path "kv/data/concourse/db" { capabilities = ["read"] } #+END_SRC - #+TITLE: concourse-web-policy.hcl + #+NAME: concourse-web-policy.hcl #+BEGIN_SRC hcl path "kv/data/concourse/workers/*" { capabilities = ["read"] @@ -103,7 +104,7 @@ necessary, can be replaced) and finally ConcourseCI itself. } #+END_SRC - #+TITLE: concourse-worker-policy.hcl + #+NAME: concourse-worker-policy.hcl #+BEGIN_SRC hcl path "kv/data/concourse/workers/*" { capabilities = ["read", "update", "delete"]