-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
169 lines (168 loc) · 6.31 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Danni Petersen - CV</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
.container {
display: flex;
flex-direction: row;
max-width: 1000px;
margin: 0 auto;
background: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.sidebar {
background-color: #333;
color: #fff;
padding: 20px;
width: 30%;
text-align: center;
}
.sidebar h1 {
font-size: 2em;
margin: 0;
}
.sidebar p {
margin: 10px 0;
}
.sidebar .contact-info {
text-align: left;
margin-top: 30px;
}
.sidebar .contact-info h2 {
font-size: 1.2em;
border-bottom: 1px solid #fff;
margin-bottom: 10px;
padding-bottom: 5px;
}
.sidebar .contact-info p {
margin: 8px 0;
line-height: 1.5;
}
.main-content {
padding: 20px;
width: 70%;
}
.main-content section {
margin-bottom: 20px;
}
.main-content h2 {
font-size: 1.5em;
margin-bottom: 10px;
color: #333;
}
.main-content p {
margin: 5px 0;
line-height: 1.6;
}
.experience ul {
list-style: none;
padding: 0;
}
.experience ul li {
margin-bottom: 15px;
}
.experience ul li strong {
display: block;
font-size: 1.1em;
color: #555;
}
footer {
text-align: center;
padding: 10px 0;
background-color: #333;
color: #fff;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="sidebar">
<h1>Danni Petersen</h1>
<p>Freelance DevSecOps Engineer</p>
<div class="contact-info">
<h2>Contact</h2>
<p><strong>Phone:</strong> +45 23 23 29 36</p>
<p><strong>Email:</strong> [email protected]</p>
<p><strong>Languages:</strong> Danish, English</p>
</div>
</div>
<div class="main-content">
<section class="summary">
<h2>Summary</h2>
<p>I'm a young IT professional who goes above and beyond to meet the needs of my clientele in both software engineering, cloud architecture, and DevSecOps.</p>
</section>
<section class="experience">
<h2>Experience</h2>
<ul>
<li>
<strong>Freelance DevSecOps Engineer</strong> - Danish Agency for Labour Market and Recruitment (STAR) - 03/2023 to Now
<ul>
<li>Spearheaded creation and deployment of high-availability Kubernetes clusters based on RKE2.</li>
<li>Automated infrastructure management using Ansible and Terraform.</li>
<li>Designed and maintained on-premises servers with high-availability Kubernetes and eBPF.</li>
<li>Developed security protocols using Snyk and Wazuh.</li>
</ul>
</li>
<li>
<strong>Freelance Software/DevOps Engineer</strong> - Energinet Datahub - 02/2022 to 03/2023
<ul>
<li>Designed backend and infrastructure for open-source certificate systems.</li>
</ul>
</li>
<li>
<strong>Software Engineer</strong> - Politiken - 07/2021 to 12/2021
<ul>
<li>Helped build cloud-based Kafka event bus.</li>
<li>Implemented CI/CD pipelines and monitoring solutions.</li>
</ul>
</li>
<li>
<strong>DevOps Engineer</strong> - Gan Integrity - 01/2021 to 06/2021
<ul>
<li>General cleanup in cloud infrastructure.</li>
<li>Creation of different environments (dev, staging, production, sandbox).</li>
<li>Transitioned jobs from Ansible and Jenkins to GitLab CI.</li>
<li>Implemented Docker, Kubernetes, and ArgoCD for deployments.</li>
</ul>
</li>
<li>
<strong>Backend/DevOps Engineer</strong> - YouTv - 05/2020 to 01/2021
<ul>
<li>Built backend and cloud infrastructure for a new streaming platform.</li>
<li>Created microservice-based architecture and CI/CD pipelines.</li>
<li>Used AWS services, Terraform, Docker, and Kubernetes extensively.</li>
</ul>
</li>
<li>
<strong>Backend/DevOps Engineer</strong> - Nuuday - 09/2016 to 05/2020
<ul>
<li>Developed and maintained cloud-based PVR platforms.</li>
<li>Maintained on-prem servers and transitioned to cloud infrastructure.</li>
<li>Used PHP, Python, Go, and Java for backend systems.</li>
<li>Built CI/CD pipelines and used AWS for scaling solutions.</li>
</ul>
</li>
</ul>
</section>
<section class="education">
<h2>Education</h2>
<p><strong>AU (Academy) in Information Technology</strong> - 2021</p>
</section>
</div>
</div>
<footer>
<p>© 2024 Danni Petersen</p>
</footer>
</body>
</html>