Compare commits

...

2 Commits

Author SHA1 Message Date
Lukas Vacula
82f89ea30c rhce exam prep 2025-05-14 08:55:42 -04:00
Lukas Vacula
2197603d8a remove Jenkinsfile 2025-04-23 12:05:27 -04:00
2 changed files with 24 additions and 24 deletions

24
Jenkinsfile vendored
View File

@ -1,24 +0,0 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'run zola build'
sh 'zola build'
}
}
stage('Deploy') {
steps {
echo 'Hello World'
sshagent(credentials: ['d82f9436-4c96-44c2-9ed3-b21481e7b742']) {
sh '''
[ -d ~/.ssh ] || mkdir ~/.ssh && chmod 0700 ~/.ssh
ssh-keyscan -t rsa,dsa lvacula.com >> ~/.ssh/known_hosts
rsync -az -e "ssh -o StrictHostKeyChecking=no" public/. greywolver@lvacula.com:lvacula.com-docker/volumes/blog
'''
}
}
}
}
}

View File

@ -0,0 +1,24 @@
+++
title = "Preparing for EX294 (RHCE exam)"
# description = ""
date = 2025-04-23
# updated = 2025-04-23
#draft = true
[taxonomies]
tags = ["ansible","certifications"]
+++
I got my RHCSA certification last April.
It was my first certification since shifting from my security-centered education and first job to my current role as a systems engineer.
I learned plenty of stuff for my job while preparing for it, and it's the most fulfilling exam I've taken to date because it is entirely practical.
I also had a major head-start to learning it because I'd been using Linux as a daily OS since 2019.
The next exam in the series for Red Hat is the EX294 AKA the RHCE exam.
The prior versions of the RHCE exam focused on advanced Linux topics, but the modern version is all about Ansible.
Unfortunately, I had minimal exposure to Ansible prior to starting at this job.
It wasn't *none* but it was fairly close.
Luckily, I've had plenty of opportunities to get acquainted with it.
We are quickly moving to using Ansible for as much as possible at work - enrolling servers in LDAP, setting up services on servers, etc...
We're also using Ansible Automation Platform, so learning to use execution environments and Navigator has become essential as well.