Populate site with real CV data; restyle OG subtitle
Real career history (Woolworths, Virtus Health, Linde, ELGAS, Darktime), cloud-heavy skills matrix, education, LinkedIn, Sydney location, and projects mapped to actual work. OG subtitle now smaller italic serif.
This commit is contained in:
+63
-15
@@ -1,6 +1,5 @@
|
||||
// Short experience summary for the About section (M1).
|
||||
// A fuller, dated timeline lands in M2.
|
||||
// TODO(Jonathon): fill employer names, exact titles, and dates.
|
||||
// Career history (from CV). The About section shows the most recent few;
|
||||
// the full list lives here (and on /projects / the CV).
|
||||
|
||||
export type Role = {
|
||||
title: string;
|
||||
@@ -12,22 +11,71 @@ export type Role = {
|
||||
|
||||
export const experience: Role[] = [
|
||||
{
|
||||
title: "Platform / Infrastructure Engineer",
|
||||
org: "TODO: Employer", // TODO(Jonathon)
|
||||
period: "TODO: dates", // TODO(Jonathon)
|
||||
title: "Infrastructure / DevOps Engineer",
|
||||
org: "Woolworths",
|
||||
period: "Aug 2025 – Present",
|
||||
summary:
|
||||
"Operate and automate a fleet of GPU-backed edge Kubernetes clusters running computer-vision workloads, plus the IaC pipelines that deploy them.",
|
||||
"Core DevOps infrastructure engineer for store-edge solutions — turning high-level designs into single-press deployments and CD pipelines.",
|
||||
highlights: [
|
||||
"Hardened GPU readiness and egress networking across the edge fleet",
|
||||
"Built Ansible/AWX automation for repeatable cluster bring-up",
|
||||
"Owned observability and network policy for the platform",
|
||||
"Single-touch deployment of an edge AI solution running on Kubernetes at the store edge",
|
||||
"GPU brought online as code — passthrough via ESXi, end-state manifests / Helm charts",
|
||||
"Ansible playbook builds wired through a single source-of-truth pipeline with per-store vars",
|
||||
"Removed manual practices across infra and ops — IaC throughout, spec-driven and documented as code",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "TODO: Previous role",
|
||||
org: "TODO: Employer", // TODO(Jonathon)
|
||||
period: "TODO: dates", // TODO(Jonathon)
|
||||
summary: "TODO(Jonathon): one or two lines on a previous role.",
|
||||
highlights: [],
|
||||
title: "Infrastructure Systems Engineer",
|
||||
org: "Virtus Health",
|
||||
period: "Aug 2022 – Aug 2025",
|
||||
summary:
|
||||
"Global IT — optimisation, implementation and projects across an enterprise estate.",
|
||||
highlights: [
|
||||
"Managed ~1,000 VMs across a global VMware estate",
|
||||
"Re-segmented flat sites into isolated VLAN ranges; SD-WAN and Aruba ClearPass onboarding",
|
||||
"Migrated workloads to Azure (Blob, AVS); upgraded Palo Alto / FortiGate firewalls",
|
||||
"Led a new major-site build — end-to-end services implementation",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Global IT Infrastructure Engineer",
|
||||
org: "Linde Asia Pacific",
|
||||
period: "Sep 2019 – Aug 2022",
|
||||
summary:
|
||||
"Maintained and modernised global infrastructure to enterprise standards across the region.",
|
||||
highlights: [
|
||||
"Global VMware / Dell hosting; PowerShell automation of manual project tasks",
|
||||
"Migrated Google Business → Microsoft 365 across the region; AWS-hosted ERP access",
|
||||
"ERP hardware refresh with new mainframe and DR solution; PBX → VoIP across AU/NZ",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Web Developer / Tech Admin",
|
||||
org: "ELGAS",
|
||||
period: "Aug 2018 – Sep 2019",
|
||||
summary:
|
||||
"Development, optimisation and escalation for the IT service-desk team.",
|
||||
highlights: [
|
||||
"Automated network management and single-click OS updating / app packaging",
|
||||
"Cost-saving remote troubleshooting and DR ownership for critical systems",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "IT Technician",
|
||||
org: "Darktime Computer Services",
|
||||
period: "Nov 2010 – Jun 2013",
|
||||
summary:
|
||||
"Field and workshop IT across legal firms, schools, real estate and small business.",
|
||||
highlights: [
|
||||
"SBS 2008 server installs, Exchange, backups and RAID storage for small business",
|
||||
"Solo on-site support — diagnose, fix, move on",
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
export const education: string[] = [
|
||||
"Advanced Diploma in IT Networking and Security",
|
||||
"Diploma in IT Networking",
|
||||
"Certificate IV in IT Networking",
|
||||
"Ongoing study in IT certifications and new techniques",
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user