81 lines
3.1 KiB
TypeScript
81 lines
3.1 KiB
TypeScript
// 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;
|
|
org: string;
|
|
period: string;
|
|
summary: string;
|
|
highlights: string[];
|
|
};
|
|
|
|
export const experience: Role[] = [
|
|
{
|
|
title: "Infrastructure / DevOps Engineer",
|
|
org: "Woolworths",
|
|
period: "Aug 2025 - Present",
|
|
summary:
|
|
"Core DevOps infrastructure engineer for store-edge solutions - turning high-level designs into single-touch deployments and CD pipelines.",
|
|
highlights: [
|
|
"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: "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 company infrastructure off Google Cloud and Google Workspace to Microsoft: Linux domain controllers replaced with Windows Active Directory, users onto Microsoft 365 and Azure; AWS-hosted ERP access",
|
|
"ERP hardware refresh onto new mainframe plus DR solution - including daily COBOL green-screen operations; 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",
|
|
];
|
|
|