Compare commits
10 Commits
releaseAra
...
master
Author | SHA1 | Date | |
---|---|---|---|
62b99a54dc | |||
000e7d2836 | |||
dc10ab67a8 | |||
ad2d82e5aa | |||
be103753f5 | |||
4e1020e279 | |||
48db7ae1ec | |||
95f92c54ce | |||
a0738a1f4c | |||
2280b1640c |
29
.vscode/dictionaries/project-words.txt
vendored
29
.vscode/dictionaries/project-words.txt
vendored
@ -1,8 +1,37 @@
|
|||||||
|
Alertmanager
|
||||||
CAFS
|
CAFS
|
||||||
|
CMDB
|
||||||
|
datacenter
|
||||||
|
Eaa
|
||||||
|
Enteo
|
||||||
|
ESX
|
||||||
|
FLOWSTER
|
||||||
gitea
|
gitea
|
||||||
gitlocal
|
gitlocal
|
||||||
hashtable
|
hashtable
|
||||||
|
IIS
|
||||||
|
ITIL
|
||||||
|
Keepalive
|
||||||
|
KIVBF
|
||||||
|
Kuma
|
||||||
lastmod
|
lastmod
|
||||||
|
matomo
|
||||||
|
Netinstall
|
||||||
|
OSS
|
||||||
|
Paa
|
||||||
|
Phabricator
|
||||||
|
Pinia
|
||||||
|
SCM
|
||||||
|
SLES
|
||||||
|
Sonatype
|
||||||
|
tailwindcss
|
||||||
|
traefik
|
||||||
|
Traefik
|
||||||
|
Trivy
|
||||||
|
TSM
|
||||||
UCS
|
UCS
|
||||||
umami
|
umami
|
||||||
|
VCS
|
||||||
Veyor
|
Veyor
|
||||||
|
Xen
|
||||||
|
Zabbix
|
||||||
|
70
.woodpecker/ci.yml
Normal file
70
.woodpecker/ci.yml
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
when:
|
||||||
|
- event: [pull_request, tag, cron]
|
||||||
|
- event: push
|
||||||
|
branch:
|
||||||
|
- ${CI_REPO_DEFAULT_BRANCH}
|
||||||
|
|
||||||
|
variables:
|
||||||
|
- &build_plugin 'woodpeckerci/plugin-docker-buildx:3.2.1'
|
||||||
|
# deployment targets
|
||||||
|
- &publish_repos 'ocram85/blog,gitea.ocram85.com/ocram85/blog'
|
||||||
|
# logins for deployment targets
|
||||||
|
- publish_logins: &publish_logins
|
||||||
|
# Default DockerHub login
|
||||||
|
- registry: https://index.docker.io/v1/
|
||||||
|
username:
|
||||||
|
from_secret: hub_user
|
||||||
|
password:
|
||||||
|
from_secret: hub_passwd
|
||||||
|
# Additional Quay.IO login
|
||||||
|
- registry: https://gitea.ocram85.com
|
||||||
|
username:
|
||||||
|
from_secret: gitea_user
|
||||||
|
password:
|
||||||
|
from_secret: gitea_passwd
|
||||||
|
|
||||||
|
steps:
|
||||||
|
test:
|
||||||
|
image: *build_plugin
|
||||||
|
settings:
|
||||||
|
dry_run: true
|
||||||
|
registry: gitea.ocram85.com
|
||||||
|
repo: test
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
platforms: linux/amd64
|
||||||
|
auto_tag: true
|
||||||
|
#build_args:
|
||||||
|
# - VERSION=${CI_COMMIT_TAG:-PR ${CI_COMMIT_PULL_REQUEST}}
|
||||||
|
# - TAG=${CI_COMMIT_TAG}
|
||||||
|
when:
|
||||||
|
event: pull_request
|
||||||
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|
||||||
|
|
||||||
|
publish:
|
||||||
|
image: *build_plugin
|
||||||
|
settings:
|
||||||
|
repo: *publish_repos
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
platforms: linux/amd64
|
||||||
|
auto_tag: true
|
||||||
|
logins: *publish_logins
|
||||||
|
#build_args:
|
||||||
|
# - VERSION=${CI_COMMIT_TAG:-PR ${CI_COMMIT_PULL_REQUEST}}
|
||||||
|
# - TAG=${CI_COMMIT_TAG}
|
||||||
|
when:
|
||||||
|
event: [push, tag, cron]
|
||||||
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|
||||||
|
|
||||||
|
build-next:
|
||||||
|
image: *build_plugin
|
||||||
|
settings:
|
||||||
|
repo: *publish_repos
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
platforms: linux/amd64
|
||||||
|
tag: next
|
||||||
|
logins: *publish_logins
|
||||||
|
#build_args:
|
||||||
|
# - VERSION=${CI_COMMIT_TAG:-PR ${CI_COMMIT_PULL_REQUEST}}
|
||||||
|
# - TAG=${CI_COMMIT_TAG}
|
||||||
|
when:
|
||||||
|
event: [pull_request]
|
@ -1,66 +0,0 @@
|
|||||||
depends_on:
|
|
||||||
- test
|
|
||||||
|
|
||||||
pipeline:
|
|
||||||
buildMaster:
|
|
||||||
image: plugins/docker
|
|
||||||
settings:
|
|
||||||
repo: ocram85/blog
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
auto_tag: true
|
|
||||||
build_args:
|
|
||||||
- NODE_BASE=lts-buster-slim
|
|
||||||
- NGINX_BASE=1.23.1-alpine
|
|
||||||
username:
|
|
||||||
from_secret: hub_user
|
|
||||||
password:
|
|
||||||
from_secret: hub_passwd
|
|
||||||
when:
|
|
||||||
event: push
|
|
||||||
branch: master
|
|
||||||
|
|
||||||
buildMasterGitea:
|
|
||||||
image: plugins/docker
|
|
||||||
settings:
|
|
||||||
registry: gitea.ocram85.com
|
|
||||||
repo: gitea.ocram85.com/ocram85/blog
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
auto_tag: true
|
|
||||||
build_args:
|
|
||||||
- NODE_BASE=lts-buster-slim
|
|
||||||
- NGINX_BASE=1.23.1-alpine
|
|
||||||
username:
|
|
||||||
from_secret: gitea_user
|
|
||||||
password:
|
|
||||||
from_secret: gitea_passwd
|
|
||||||
when:
|
|
||||||
event: push
|
|
||||||
branch: master
|
|
||||||
|
|
||||||
trivyMaster:
|
|
||||||
image: aquasec/trivy:0.35.0
|
|
||||||
commands:
|
|
||||||
- |
|
|
||||||
trivy image \
|
|
||||||
--severity UNKNOWN,LOW,MEDIUM \
|
|
||||||
--no-progress \
|
|
||||||
ocram85/blog:latest
|
|
||||||
- |
|
|
||||||
trivy image \
|
|
||||||
--severity HIGH,CRITICAL \
|
|
||||||
--no-progress \
|
|
||||||
ocram85/blog:latest
|
|
||||||
when:
|
|
||||||
event: push
|
|
||||||
branch: master
|
|
||||||
|
|
||||||
triggerPortainerMaster:
|
|
||||||
image: ocram85/portainer-serviceupdate
|
|
||||||
settings:
|
|
||||||
#VERBOSE: true
|
|
||||||
URI: "https://portainer.ocram85.com"
|
|
||||||
TOKEN:
|
|
||||||
from_secret: TOKEN
|
|
||||||
when:
|
|
||||||
event: push
|
|
||||||
branch: master
|
|
@ -1,56 +0,0 @@
|
|||||||
depends_on:
|
|
||||||
- test
|
|
||||||
|
|
||||||
pipeline:
|
|
||||||
buildNext:
|
|
||||||
image: woodpeckerci/plugin-docker-buildx
|
|
||||||
settings:
|
|
||||||
repo: ocram85/blog
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
tags: next
|
|
||||||
username:
|
|
||||||
from_secret: hub_user
|
|
||||||
password:
|
|
||||||
from_secret: hub_passwd
|
|
||||||
when:
|
|
||||||
event: pull_request
|
|
||||||
|
|
||||||
buildNextGitea:
|
|
||||||
image: woodpeckerci/plugin-docker-buildx
|
|
||||||
settings:
|
|
||||||
registry: gitea.ocram85.com
|
|
||||||
repo: gitea.ocram85.com/ocram85/blog
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
tags: next
|
|
||||||
username:
|
|
||||||
from_secret: gitea_user
|
|
||||||
password:
|
|
||||||
from_secret: gitea_passwd
|
|
||||||
when:
|
|
||||||
event: pull_request
|
|
||||||
|
|
||||||
trivyNext:
|
|
||||||
image: aquasec/trivy:0.35.0
|
|
||||||
commands:
|
|
||||||
- |
|
|
||||||
trivy image \
|
|
||||||
--severity UNKNOWN,LOW,MEDIUM \
|
|
||||||
--no-progress \
|
|
||||||
ocram85/blog:next
|
|
||||||
- |
|
|
||||||
trivy image \
|
|
||||||
--severity HIGH,CRITICAL \
|
|
||||||
--no-progress \
|
|
||||||
ocram85/blog:next
|
|
||||||
when:
|
|
||||||
event: pull_request
|
|
||||||
|
|
||||||
triggerPortainer:
|
|
||||||
image: ocram85/portainer-serviceupdate
|
|
||||||
settings:
|
|
||||||
#VERBOSE: true
|
|
||||||
URI: "https://portainer.ocram85.com"
|
|
||||||
TOKEN:
|
|
||||||
from_secret: NEXT_TOKEN
|
|
||||||
when:
|
|
||||||
event: pull_request
|
|
@ -1,22 +0,0 @@
|
|||||||
pipeline:
|
|
||||||
DockerBaseImage:
|
|
||||||
image: renovate/renovate:34.63-slim
|
|
||||||
commands:
|
|
||||||
- "renovate"
|
|
||||||
secrets:
|
|
||||||
- RENOVATE_TOKEN
|
|
||||||
environment:
|
|
||||||
#LOG_LEVEL: debug
|
|
||||||
RENOVATE_PLATFORM: "gitea"
|
|
||||||
RENOVATE_ENDPOINT: "https://gitea.ocram85.com"
|
|
||||||
RENOVATE_REPOSITORIES: "${CI_REPO}"
|
|
||||||
RENOVATE_LABELS: "renovate"
|
|
||||||
#RENOVATE_DRY_RUN: "full"
|
|
||||||
RENOVATE_TOKEN: "${RENOVATE_TOKEN}"
|
|
||||||
RENOVATE_GITHUB_TOKEN_WARN: "false"
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
branch:
|
|
||||||
- master
|
|
||||||
- updDeps
|
|
@ -1,7 +0,0 @@
|
|||||||
pipeline:
|
|
||||||
build:
|
|
||||||
image: node:lts-buster-slim
|
|
||||||
commands:
|
|
||||||
- npm install
|
|
||||||
- npm run test
|
|
||||||
- npm run build
|
|
@ -8,7 +8,7 @@ RUN npm install \
|
|||||||
|
|
||||||
FROM nginx:1.23.3-alpine as prod
|
FROM nginx:1.23.3-alpine as prod
|
||||||
LABEL maintainer="marco.blessing@googlemail.com"
|
LABEL maintainer="marco.blessing@googlemail.com"
|
||||||
HEALTHCHECK --interval=15s --timeout=5s \
|
#HEALTHCHECK --interval=15s --timeout=5s \
|
||||||
CMD wget --no-verbose --tries=1 --spider http://localhost:80/ || exit 1
|
# CMD wget --no-verbose --tries=1 --spider http://localhost:80/ || exit 1
|
||||||
COPY --from=builder src/public /usr/share/nignx/html/
|
COPY --from=builder src/public /usr/share/nignx/html/
|
||||||
COPY nginx.conf /etc/nginx/nginx.conf
|
COPY nginx.conf /etc/nginx/nginx.conf
|
||||||
|
@ -43,4 +43,4 @@ The next tag is used for testing any code changes on development branches and pu
|
|||||||
|
|
||||||
This image contains the hugo based sources for my personal blog. It's made with the [Congo theme](https://github.com/jpanther/congo). The static pages are served by the included nginx server with a custom config. The custom config is needed to redirect 404 errors to a custom page.
|
This image contains the hugo based sources for my personal blog. It's made with the [Congo theme](https://github.com/jpanther/congo). The static pages are served by the included nginx server with a custom config. The custom config is needed to redirect 404 errors to a custom page.
|
||||||
|
|
||||||
You can simply run the container with `docker run -it --rm -p "8080:80" ocram85/blog:latest`
|
You can simply run the container with `docker run -it --rm -p "8080:80" ocram85/blog:latest`.
|
||||||
|
@ -3,7 +3,7 @@ title: 'About Me'
|
|||||||
date: 2017-12-01T10:00:48+01:00
|
date: 2017-12-01T10:00:48+01:00
|
||||||
draft: false
|
draft: false
|
||||||
|
|
||||||
lastmod: 2021-12-23T10:00:48+01:00
|
lastmod: 2023-01-02T06:00:00+01:00
|
||||||
showDateUpdated: true
|
showDateUpdated: true
|
||||||
|
|
||||||
# custom overrides for pages
|
# custom overrides for pages
|
||||||
@ -22,40 +22,40 @@ showTableOfContents: false
|
|||||||
{{< icon "address-card" >}} Hi, my name is Marco Blessing and I live in the south of Germany near a city called
|
{{< icon "address-card" >}} Hi, my name is Marco Blessing and I live in the south of Germany near a city called
|
||||||
[Karlsruhe](https://goo.gl/maps/kDpo6bb9V2r).
|
[Karlsruhe](https://goo.gl/maps/kDpo6bb9V2r).
|
||||||
|
|
||||||
### {{< icon "terminal" >}} Projects
|
## {{< icon "terminal" >}} Projects
|
||||||
|
|
||||||
Take a look at this [Projects](/) page to get an overview of my current work.
|
Take a look at my self hosted [Gitea](https://gitea.ocram85.com/explore/repos) instance to get an overview of my current work.
|
||||||
|
|
||||||
### {{< icon "heart" >}} Favorite Topics
|
## {{< icon "heart" >}} Favorite Topics
|
||||||
|
|
||||||
I'm very interested in **PowerShell**, **NodeJS**, **Go** and **Software Engineering** in general.
|
I'm very interested in **PowerShell**, **NodeJS**, **Go** and **Software Engineering** in general.
|
||||||
|
|
||||||
Additionally I love building **CI/CD Stacks** with different open-source products to spread the word
|
Additionally I love building **CI/CD Stacks** with different open-source products to spread the word
|
||||||
of **DevOps** and **Containerization**.
|
of **DevOps** and **Containerization**.
|
||||||
|
|
||||||
### {{< icon "cubes" >}} Skills
|
## {{< icon "cubes" >}} Skills
|
||||||
|
|
||||||
_Here comes a list of subjects I've worked with, grouped by topics..._
|
_Here comes a list of subjects I've worked with, grouped by topics..._
|
||||||
|
|
||||||
#### {{< icon "cube" >}} Container and {{< icon "docker" >}}Docker related
|
### {{< icon "cube" >}} Container and {{< icon "docker" >}}Docker related
|
||||||
|
|
||||||
Traefik • Portainer • Docker Swarm Mode • Sonatype Nexus Repository • Aquasecurity Trivy •
|
Traefik • Portainer • Docker Swarm Mode • Sonatype Nexus Repository • Aqua Security Trivy •
|
||||||
Prometheus • Node-Exporter • cAdvisor • Alertmanager • Karma
|
Prometheus • Node-Exporter • cAdvisor • Alertmanager • Karma
|
||||||
|
|
||||||
#### {{< icon "code" >}} Scripting and Programming Languages
|
### {{< icon "code" >}} Scripting and Programming Languages
|
||||||
|
|
||||||
PowerShell • JavaScript • Go • Python • PHP • Object Pascal • C++ • Visual Basic
|
PowerShell • JavaScript • Go • Python • PHP • Object Pascal • C++ • Visual Basic
|
||||||
|
|
||||||
#### {{< icon "terminal" >}} Operating Systems
|
### {{< icon "terminal" >}} Operating Systems
|
||||||
|
|
||||||
Microsoft Windows 98SE++ • Microsoft Windows Server 2000++ •
|
Microsoft Windows 98SE++ • Microsoft Windows Server 2000++ •
|
||||||
CentOS _(and other Red Hat Enterprise Linux derivatives)_ • SLES • ubuntu
|
CentOS _(and other Red Hat Enterprise Linux derivatives)_ • SLES • ubuntu
|
||||||
|
|
||||||
#### {{< icon "cloud" >}} Cloud Orchestration and Automation
|
### {{< icon "cloud" >}} Cloud Orchestration and Automation
|
||||||
|
|
||||||
Microsoft Azure • eCloud Manager • FLOWSTER Studio • Citrix Cloud Platform • Citrix Cloud Platform Business Manager
|
Microsoft Azure • eCloud Manager • FLOWSTER Studio • Citrix Cloud Platform • Citrix Cloud Platform Business Manager
|
||||||
|
|
||||||
#### {{< icon "cogs" >}} Server Roles, Features and Products
|
### {{< icon "cogs" >}} Server Roles, Features and Products
|
||||||
|
|
||||||
Active Directory • File Server • Web Server _(IIS and Apache)_ •
|
Active Directory • File Server • Web Server _(IIS and Apache)_ •
|
||||||
DBs _(MSSQL, MySQL, PostgresSQL, Oracle 10g)_ • Backup & Restore _(IBM Tivoli Storage Manager)_ •
|
DBs _(MSSQL, MySQL, PostgresSQL, Oracle 10g)_ • Backup & Restore _(IBM Tivoli Storage Manager)_ •
|
||||||
@ -63,13 +63,45 @@ Server Hypervisor _(VMWare ESX, HyperV)_ • Terminal Server _(Microsoft, Cit
|
|||||||
Software Virtualization _(VMware ThinApp)_ • Software Packaging and Deployment _(Enteo Netinstall, Matrix42)_
|
Software Virtualization _(VMware ThinApp)_ • Software Packaging and Deployment _(Enteo Netinstall, Matrix42)_
|
||||||
• Monitoring _(Zabbix)_ • Build Engines _(Jenkins, AppVeyor)_
|
• Monitoring _(Zabbix)_ • Build Engines _(Jenkins, AppVeyor)_
|
||||||
|
|
||||||
#### {{< icon "cog" >}} General Software
|
### {{< icon "cog" >}} General Software, Frameworks
|
||||||
|
|
||||||
HAproxy • Keepalive • git SCM • Phabricator • VSCode • Notepad++
|
Node.js • Gitea • Drone.io • WoodpeckerCI • Vue.js • Quasar • tailwindcss • HAproxy • Keepalive • git SCM • Phabricator • VSCode
|
||||||
|
|
||||||
### {{< icon "briefcase" >}} Experience
|
## {{< icon "briefcase" >}} Experience
|
||||||
|
|
||||||
#### {{< icon "calendar-alt" >}} 2018 - 202{{< icon "question" >}} {{< icon "building" >}} [Komm.ONE](https://komm.one) as **SysOp** / **DevOps Engineer**
|
### {{< icon "calendar-alt" >}} 2018 - 202{{< icon "question" >}} {{< icon "building" >}} Komm.ONE as **SysOp** / **DevOps Engineer**
|
||||||
|
|
||||||
|
{{< icon "calendar-plus" >}} **2022** Cloud-Platform Infrastructure Project
|
||||||
|
|
||||||
|
Komm.ONE decided to create a complete new `Cloud-Platform Infrastructure`. The project started several years ago and replaced all software and hardware. Now it was our turn - So we started planning and implementing our test stage in the new environment. 2023 will challenge us to review and adapt the automation stack to changing requirements...
|
||||||
|
|
||||||
|
{{< icon "calendar-plus" >}} **2021** New Full Stack Self Service Portal
|
||||||
|
|
||||||
|
In 2021 I wanted to get back into coding and software architecture. So I started refactoring our Self Service Portal. The requirements have changed so much in the meantime that we decided to start from scratch. So we started a new full stack project containing these key elements:
|
||||||
|
|
||||||
|
| Tier | Components |
|
||||||
|
| ---- | ---------- |
|
||||||
|
| Backend | [Go](https://go.dev/) + [Node.js](https://nodejs.org/) |
|
||||||
|
| Frontend | [Vue.js 3](https://vuejs.org/) (with [Pinia](https://pinia.vuejs.org/), [Vue Router](https://router.vuejs.org/)) & [Quasar](https://quasar.dev/) |
|
||||||
|
| Data Management | CouchDB, MongoDB, SQL |
|
||||||
|
|
||||||
|
{{< icon "calendar-plus" >}} **2020** Cloud-Frontend Automation Stack
|
||||||
|
|
||||||
|
The year 2020 started with designing a new Automation Stack. My main goal war to upgrade the tech stack while
|
||||||
|
keeping the required operating an maintenance as low as possible. So I replaced some products to split the features / responsibilities:
|
||||||
|
|
||||||
|
| Role | Replaced Product | New Component |
|
||||||
|
| ---- | ---------------- | ------------- |
|
||||||
|
| Operational Platform | native Apps | Container based with [Docker](https://www.docker.com/), [traefik](https://traefik.io/traefik/), [Portainer](https://www.portainer.io/) |
|
||||||
|
| Git VCS | Phabricator | [Gitea](https://gitea.io) |
|
||||||
|
| Artifact Store | Jenkins | [Nexus Repository Manager OSS](https://www.sonatype.com/products/repository-oss-download) |
|
||||||
|
| Build Server | Jenkins | [Drone.io](https://www.drone.io/) |
|
||||||
|
| Wiki + KB | Phabricator | [Outline](https://www.getoutline.com/) |
|
||||||
|
| Landing Page | Phabricator | [Ghost CMS](https://ghost.org/) |
|
||||||
|
| Event Monitoring + Alerting | - | [Prometheus](https://github.com/prometheus/prometheus), [Alertmanager](https://github.com/prometheus/alertmanager), [cAdvisor](https://github.com/google/cadvisor), [Karma](https://github.com/prymitive/karma), [Grafana](https://github.com/grafana/grafana) |
|
||||||
|
| Service Status | - | [Uptime Kuma](https://github.com/louislam/uptime-kuma) |
|
||||||
|
| Web Analytics | matomo | [Umami](https://github.com/umami-software/umami) |
|
||||||
|
| Static Websites | Jenkins | [Hugo](https://github.com/gohugoio/hugo) |
|
||||||
|
|
||||||
{{< icon "calendar-plus" >}} **2019** Internal Self Service Portal
|
{{< icon "calendar-plus" >}} **2019** Internal Self Service Portal
|
||||||
|
|
||||||
@ -89,11 +121,11 @@ applications:
|
|||||||
|
|
||||||
{{< icon "calendar-plus" >}} **2018** KIVBF merged with its partners to form Komm.ONE in order
|
{{< icon "calendar-plus" >}} **2018** KIVBF merged with its partners to form Komm.ONE in order
|
||||||
to be able to offer uniform services. After adjusting the internal organizational structure, I'm now part of the
|
to be able to offer uniform services. After adjusting the internal organizational structure, I'm now part of the
|
||||||
business unit 4.2 _(Integration-, Security- & Application Managent)_. My previous team was reassigned to this new
|
business unit 4.2 _(Integration-, Security- & Application Management)_. My previous team was reassigned to this new
|
||||||
unit as well, and was renamed into CAFS _(Cloud- & Application-Frontend-Services)_. So my range of tasks changed
|
unit as well, and was renamed into CAFS _(Cloud- & Application-Frontend-Services)_. So my range of tasks changed
|
||||||
slightly.
|
slightly.
|
||||||
|
|
||||||
#### {{< icon "calendar-alt" >}} 2012 - 2018 {{< icon "building" >}} [KIVBF](https://www.kivbf.de) as **SysOp** / **DevOps Engineer**
|
### {{< icon "calendar-alt" >}} 2012 - 2018 {{< icon "building" >}} KIVBF as **SysOp** / **DevOps Engineer**
|
||||||
|
|
||||||
{{< icon "calendar-plus" >}} **2015** In 2015 I started automating several platform and workload
|
{{< icon "calendar-plus" >}} **2015** In 2015 I started automating several platform and workload
|
||||||
related use cases. Unfortunately it's closed source, so I can't talk about details. But to give a glimpse at the
|
related use cases. Unfortunately it's closed source, so I can't talk about details. But to give a glimpse at the
|
||||||
@ -116,12 +148,12 @@ It was a great place to get to know such large environment and I finally started
|
|||||||
implemented the monitoring system [Zabbix](http://www.zabbix.com/). Unfortunately I couldn't find any extension to
|
implemented the monitoring system [Zabbix](http://www.zabbix.com/). Unfortunately I couldn't find any extension to
|
||||||
monitor out IBM tape library or TSM data itself. So I developed own interfaces therefore.
|
monitor out IBM tape library or TSM data itself. So I developed own interfaces therefore.
|
||||||
|
|
||||||
#### {{< icon "calendar-alt" >}} 2008 - 2012 {{< icon "building" >}} [Pforzheim municipal administration](https://www.pforzheim.de/) as **SysOp**
|
### {{< icon "calendar-alt" >}} 2008 - 2012 {{< icon "building" >}} Pforzheim municipal administration as **SysOp**
|
||||||
|
|
||||||
At the municipal administration of Pforzheim I was responsible for the**Software Packaging and Deployment**,
|
At the municipal administration of Pforzheim I was responsible for the **Software Packaging and Deployment**,
|
||||||
**MS-SQL Servers** and **Web Hosting**.
|
**MS-SQL Servers** and **Web Hosting**.
|
||||||
|
|
||||||
### {{< icon "graduation-cap" >}} Education
|
## {{< icon "graduation-cap" >}} Education
|
||||||
|
|
||||||
I successfully finished two undergraduate trainings as **IT Specialist For Application Development** and
|
I successfully finished two undergraduate trainings as **IT Specialist For Application Development** and
|
||||||
**Management Assistant in IT-Systems**.
|
**Management Assistant in IT-Systems**.
|
||||||
|
@ -2,6 +2,6 @@
|
|||||||
async
|
async
|
||||||
defer
|
defer
|
||||||
data-website-id="3e944f0b-6377-4a23-8bdd-64b408d13611"
|
data-website-id="3e944f0b-6377-4a23-8bdd-64b408d13611"
|
||||||
src="https://umami.ocram85.com/umami.js"
|
src="https://umami.ocram85.com/script.js"
|
||||||
data-domains="ocram85.com"
|
data-domains="ocram85.com"
|
||||||
></script>
|
></script>
|
||||||
|
@ -5,7 +5,7 @@ http {
|
|||||||
include mime.types;
|
include mime.types;
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen 0.0.0.0:80;
|
||||||
root /usr/share/nignx/html;
|
root /usr/share/nignx/html;
|
||||||
index index.html;
|
index index.html;
|
||||||
error_page 404 /404.html;
|
error_page 404 /404.html;
|
||||||
|
@ -28,8 +28,8 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"exec-bin": "^1.0.0",
|
"exec-bin": "^1.0.0",
|
||||||
"hugo-installer": "^4.0.0",
|
"hugo-installer": "^4.0.0",
|
||||||
"markdownlint-cli": "^0.32.0",
|
"markdownlint-cli": "^0.33.0",
|
||||||
"rimraf": "^3.0.2"
|
"rimraf": "^4.0.0"
|
||||||
},
|
},
|
||||||
"otherDependencies": {
|
"otherDependencies": {
|
||||||
"hugo": "0.91.1"
|
"hugo": "0.91.1"
|
||||||
|
Loading…
Reference in New Issue
Block a user