mirror of
https://git.sr.ht/~magic_rb/website
synced 2024-11-22 08:04:21 +01:00
Add dates and blog cleanup
Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
parent
1e583b0a15
commit
6019c01875
|
@ -1,4 +1,6 @@
|
||||||
#+TITLE: Emacs, the Journey to an Operating System
|
#+TITLE: Emacs, the Journey to an Operating System
|
||||||
|
#+DATE: <2020-09-27 Sun>
|
||||||
|
|
||||||
* The Age without Emacs
|
* The Age without Emacs
|
||||||
It's the 12th of February, I'm playing Factorio on my laptop, when the bell rings and not long
|
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
|
after my Biology teacher enters the classroom, I quickly save and exit out of Factorio. After the
|
||||||
|
|
|
@ -1,3 +1 @@
|
||||||
#+INCLUDE: sitemap.inc
|
#+INCLUDE: sitemap.inc
|
||||||
|
|
||||||
Testing subscript, emacs_is_awesome is not subscripted but F_{g} is.
|
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#+TITLE: On Docker Databases and Nixos
|
#+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,
|
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
|
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
|
declarative enviroment, unlike /ehm/ all the other base images... Well, I didn't realize how *hard* it is to
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#+TITLE: Scalable ConcourseCI with Nomad and Nix
|
#+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
|
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
|
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
|
*** Policies
|
||||||
We'll need 3 policies, =concourse-web-policy=, =concourse-worker-policy= and =concourse-db-policy=.
|
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
|
#+BEGIN_SRC hcl
|
||||||
path "kv/data/concourse/db" {
|
path "kv/data/concourse/db" {
|
||||||
capabilities = ["read"]
|
capabilities = ["read"]
|
||||||
}
|
}
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
#+TITLE: concourse-web-policy.hcl
|
#+NAME: concourse-web-policy.hcl
|
||||||
#+BEGIN_SRC hcl
|
#+BEGIN_SRC hcl
|
||||||
path "kv/data/concourse/workers/*" {
|
path "kv/data/concourse/workers/*" {
|
||||||
capabilities = ["read"]
|
capabilities = ["read"]
|
||||||
|
@ -103,7 +104,7 @@ necessary, can be replaced) and finally ConcourseCI itself.
|
||||||
}
|
}
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
#+TITLE: concourse-worker-policy.hcl
|
#+NAME: concourse-worker-policy.hcl
|
||||||
#+BEGIN_SRC hcl
|
#+BEGIN_SRC hcl
|
||||||
path "kv/data/concourse/workers/*" {
|
path "kv/data/concourse/workers/*" {
|
||||||
capabilities = ["read", "update", "delete"]
|
capabilities = ["read", "update", "delete"]
|
||||||
|
|
Loading…
Reference in a new issue