Skip to content

Commit

Permalink
fixed profile pic etc
Browse files Browse the repository at this point in the history
  • Loading branch information
ehvs committed Apr 28, 2024
1 parent 1c27782 commit d11e0c9
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 11 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# mkdocs-blog
Blog using mkdocs

Local running
```
/home/hgomes/.local/bin/mkdocs serve
```
2 changes: 1 addition & 1 deletion docs/blog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

TBD

[:octicons-arrow-right-24: Here](#)
[:octicons-arrow-right-24: Here](http://127.0.0.1:8000/blog/category/monitoring/)

- :fontawesome-brands-aws:{ .aws .lg .middle } __ROSA__

Expand Down
29 changes: 29 additions & 0 deletions docs/blog/posts/promql-for-k8s.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: PromQL expressions for K8S
summary: PromQL expressions to find out specific informaiton
authors:
- Hevellyn
date: 2024-04-28
categories:
- Monitoring
slug: promql,monitoring,prometheus
tags:
- promql
- monitoring
- prometheus
---

A set of PROMQL expressions that has been the most useful for me.

<!-- more -->

- What node got into *Not Ready* status?
```
kube_node_status_condition{condition="Ready",status!="true"}
```

- How many containers runs in a pod? The `~` works as a `*` wildcard/regex.
```
kube_pod_container_info{cluster="", namespace="<project-name>",pod=~"<pod-name>"}
```

4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

---

![Hevellyn Gomes](/images/hevs-180x250.jpg){ align=left }
![Hevellyn Gomes](https://raw.githubusercontent.com/ehvs/notes/main/images/hevs-180x250.jpg){ align=left }

For the last 7 years I have been working with OpenShift, since 3.7 version running `openshift-install` with Ansible, migrating then to a more robust OpenShift 4 approach using ignite files, and for the last 2 years, focused on the Cloud, with managed services in Azure and AWS.
For the last 7 years I have been working with OpenShift, since v3.7 with the old and gold `openshift-install` with Ansible, migrating then to a more robust OpenShift 4 approach using ignite files, and for the last 2 years, focused on the Cloud, with managed services in Azure and AWS. During these years, learning the value of the customer experience has been rewarding while also working across multiple teams, always learning a new and shiny technical bit. This blog is a compilated of everything that have been most useful for me. 🧵 An eternal work in progress.

</div>
* * *
Expand Down
16 changes: 8 additions & 8 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ theme:
- content.code.copy
- content.tabs.link
palette:
# Palette toggle for light mode
- scheme: youtube
toggle:
icon: material/lightbulb
name: Switch to dark mode

# Palette toggle for dark mode
- scheme: slate
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
# Palette toggle for light mode
- scheme: youtube
toggle:
icon: material/lightbulb
name: Switch to dark mode
icon:
logo: fontawesome/solid/user-plus
logo: octicons/rocket-16
extra_css:
- stylesheets/extra.css
plugins:
Expand Down

0 comments on commit d11e0c9

Please sign in to comment.