Compare commits
10 Commits
cba5e68fe2
...
6424e1fe86
Author | SHA1 | Date | |
---|---|---|---|
6424e1fe86 | |||
f26dc7c374 | |||
f9e6cb4921 | |||
1bde01bfe9 | |||
9857b9645e | |||
d9432ceff4 | |||
|
24d55d7ce5 | ||
|
f586869de4 | ||
|
d6a2ba027d | ||
|
0e2623f65a |
@ -2,14 +2,14 @@ image: registry.gitlab.com/pages/hugo:latest
|
|||||||
|
|
||||||
stages:
|
stages:
|
||||||
- build
|
- build
|
||||||
- vps
|
- deploy
|
||||||
|
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
GIT_SUBMODULE_STRATEGY: recursive
|
GIT_SUBMODULE_STRATEGY: recursive
|
||||||
|
|
||||||
# Only because it's broken right now
|
# This build stage will also leave artifacts ready for gitlab pages to use
|
||||||
build:
|
pages:
|
||||||
stage: build
|
stage: build
|
||||||
only:
|
only:
|
||||||
refs:
|
refs:
|
||||||
@ -19,6 +19,30 @@ build:
|
|||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- public
|
- public
|
||||||
only:
|
|
||||||
- master
|
|
||||||
|
|
||||||
|
build-resume.shockrah.xyz:
|
||||||
|
stage: build
|
||||||
|
only:
|
||||||
|
refs:
|
||||||
|
- master
|
||||||
|
script:
|
||||||
|
- hugo
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- public
|
||||||
|
|
||||||
|
deploy-resume.shockrah.xyz:
|
||||||
|
stage: deploy
|
||||||
|
image:
|
||||||
|
name: amazon/aws-cli:2.2.25
|
||||||
|
entrypoint: [""]
|
||||||
|
only:
|
||||||
|
refs:
|
||||||
|
- master
|
||||||
|
needs:
|
||||||
|
- build-resume.shockrah.xyz
|
||||||
|
before_script:
|
||||||
|
- bash scripts/verify-aws-fields.sh
|
||||||
|
script:
|
||||||
|
- aws s3 cp public/ s3://resume.shockrah.xyz --recursive
|
||||||
|
8
content/education/aws.md
Normal file
8
content/education/aws.md
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
institution: AWS Certified Cloud Practioneer
|
||||||
|
when: June 2023
|
||||||
|
degree: Certificate
|
||||||
|
certlink: https://www.credly.com/badges/59db6298-f69d-4ad3-9ffb-74c8431d7a4d/public_url
|
||||||
|
rank: 2
|
||||||
|
---
|
||||||
|
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
institution: California State University Monterey Bay
|
institution: California State University Monterey Bay
|
||||||
when: Graduated Dec 2019
|
when: Dec 2019
|
||||||
degree: Bachelor's
|
degree: Bachelor's
|
||||||
rank: 5
|
rank: 5
|
||||||
---
|
---
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
---
|
---
|
||||||
institution: CompTIA Security+ Certified
|
institution: CompTIA Security+ Certified
|
||||||
when: Acheived July 2021
|
when: July 2021
|
||||||
degree: Certification
|
degree: Certification
|
||||||
|
certid: 83JZR9SPWDV1Q6CS
|
||||||
rank: 4
|
rank: 4
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
---
|
---
|
||||||
institution: Splunk Core User Certified
|
institution: Splunk Core User Certified
|
||||||
when: Acheived August 2021
|
when: August 2021
|
||||||
degree: Certification
|
degree: Certification
|
||||||
|
certlink: https://www.credly.com/badges/709380cd-ac24-48a2-953d-803d63eaae96
|
||||||
rank: 3
|
rank: 3
|
||||||
---
|
---
|
||||||
|
|
||||||
|
8
content/experience/ssnc.md
Normal file
8
content/experience/ssnc.md
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
company: SSNC
|
||||||
|
when: April 2022 - Current
|
||||||
|
title: Site Reliability Engineer
|
||||||
|
rank: -4
|
||||||
|
---
|
||||||
|
|
||||||
|
|
16
scripts/verify-aws-fields.sh
Normal file
16
scripts/verify-aws-fields.sh
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
echo "Checking to make sure all required AWS env vars are present"
|
||||||
|
|
||||||
|
[[ $AWS_DEFAULT_REGION != '' ]]
|
||||||
|
echo AWS_DEFAULT_REGION is set
|
||||||
|
|
||||||
|
[[ $AWS_DEFAULT_REGION != '' ]]
|
||||||
|
echo AWS_ACCESS_KEY_ID is set
|
||||||
|
|
||||||
|
[[ $AWS_DEFAULT_REGION != '' ]]
|
||||||
|
echo AWS_SECRET_ACCESS_KEY is set
|
||||||
|
|
||||||
|
|
@ -6,9 +6,14 @@
|
|||||||
<li style="list-style-type: none;">
|
<li style="list-style-type: none;">
|
||||||
<a><strong class="bigger">{{.Params.Institution}}</strong></a>
|
<a><strong class="bigger">{{.Params.Institution}}</strong></a>
|
||||||
{{ if .Params.Degree }}
|
{{ if .Params.Degree }}
|
||||||
<p class="text-muted">{{.Params.When}}</p>
|
<p class="text-muted">{{.Params.Degree}} acheived {{.Params.When}}</p>
|
||||||
|
{{ end }}
|
||||||
|
{{ if .Params.Certlink }}
|
||||||
|
<a href="{{.Params.Certlink}}">Certificate Link</a>
|
||||||
|
{{ end }}
|
||||||
|
{{ if .Params.Certid }}
|
||||||
|
<p class="text-muted">Certificate id: {{.Params.Certid}}</p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<p>{{.Content}}</p>
|
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
|
Loading…
Reference in New Issue
Block a user