Skip to content

Commit

Permalink
update categories and syntax highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Woodside authored and Michael Woodside committed Sep 25, 2024
1 parent 91d6b83 commit 7452fd7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion _posts/2024-09-24-welcome-to-jekyll.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: post
title: "Welcome to Jekyll!"
date: 2024-09-24 16:08:29 -0500
categories: jekyll update
categories: "jekyll update"
---
You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.

Expand Down
4 changes: 2 additions & 2 deletions _posts/2024-09-24-welcome-to-my-blog.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
layout: post
title: "Welcome to my Blog!"
date: 2024-09-24 16:08:29 -0500
categories: New Site
categories: "New-Site"
---
This is the first blog on my new site, I know it isn't much yet, but I am hoping that over time this will become a resource for myself and others as I document my experiences in the DevOps World.

## Background

Lets see if this works properly
Lets see if this works properly Trying some new settings and this is a temp post.
{% highlight ruby %}
def print_hi(name)
puts "Hi, #{name}"
Expand Down
7 changes: 5 additions & 2 deletions _posts/2024-09-25-github-ssh-keys.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ Now if you are connecting alot of different repos, I would highly recommend depl
### Generate New keys

So step 1 in the process is to generate new keys for your repo, I would highly recommend using a different key for each repo if possible. Below is the command we used to generate a new key for Github using the recommended algorithm of ED25519 256

`ssh-keygen -t ed25519 -C "[email protected]"`

{% highlight bash %}
ssh-keygen -t ed25519 -C "[email protected]"
{% endhighlight %}


This command should prompt you for a storage location and a passphrase, **Currently (September 2024) ARGOCD does NOT support Passphrases on SSH Keys**.

Expand Down

0 comments on commit 7452fd7

Please sign in to comment.