Skip to content

Commit 7df4179

Browse files
authored
Switch config to yaml and add readme (#7)
* Switch config to yaml and add readme * Update README.md * Move frontmatter to yaml and set image * Delete unused svg image
1 parent a537bbc commit 7df4179

File tree

5 files changed

+56
-55
lines changed

5 files changed

+56
-55
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
# blog
2+
3+
- [Hugo](https://gohugo.io/) blog using [PaperMod](https://adityatelange.github.io/hugo-PaperMod) theme
4+
- Served @ [rossfairbanks.com](https://rossfairbanks.com) by [Netlify](https://www.netlify.com/)

config.toml

Lines changed: 0 additions & 41 deletions
This file was deleted.

config.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
baseurl: /
2+
copyright: Ross Fairbanks
3+
title: Blog
4+
theme: papermod
5+
6+
params:
7+
mainSections:
8+
- post
9+
intro: true
10+
headline: Blog
11+
description: Personal blog of Ross Fairbanks
12+
github: https://github.com/rossf7
13+
twitter: https://twitter.com/rossf7
14+
opengraph: true
15+
shareTwitter: true
16+
dateFormat: Mon, Jan 2, 2006
17+
18+
permalinks:
19+
post: /:year/:month/:day/:filename/
20+
21+
menu:
22+
main:
23+
- identifier: home
24+
name: Home
25+
url: /
26+
weight: 10
27+
- identifier: github
28+
name: GitHub
29+
url: https://github.com/rossf7
30+
weight: 20
31+
- identifier: twitter
32+
name: Twitter
33+
url: https://twitter.com/rossf7
34+
weight: 30
35+
- identifier: about
36+
name: About
37+
url: /about/
38+
weight: 40

content/images/ua-heart-flag.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

content/post/energy-consumption-of-a-cluster-with-scaphandre.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1-
+++
2-
title = "Energy consumption of a Kubernetes cluster using Scaphandre"
3-
description = "Measuring energy consumption of bare metal Kubernetes clusters using Scaphandre."
4-
tags = [
5-
"kubernetes",
6-
"rust",
7-
"sustainability",
8-
]
9-
date = 2022-05-23T09:00:00Z
10-
author = "Ross Fairbanks"
11-
+++
12-
13-
![Wind turbine with sunflowers](/images/wind-turbine-with-sunflowers.jpeg)
1+
---
2+
author: Ross Fairbanks
3+
cover:
4+
alt: Wind turbine with sunflowers
5+
image: /images/wind-turbine-with-sunflowers.jpeg
6+
date: 2022-05-23T09:00:00.000Z
7+
description: >-
8+
Measuring energy consumption of bare metal Kubernetes clusters using
9+
Scaphandre.
10+
tags:
11+
- kubernetes
12+
- rust
13+
- sustainability
14+
title: Energy consumption of a Kubernetes cluster using Scaphandre
15+
---
1416

1517
[Green Software Engineering](https://greensoftware.foundation/articles/what-is-green-software) is a new and evolving branch of software engineering for building more sustainable systems. Using these types of techniques the tech sector can play its part in tackling the climate crisis and reducing our dependence on fossil fuels.
1618

0 commit comments

Comments
 (0)