Move from jochums.at -> jochum.dev

Signed-off-by: René Jochum <rene@jochum.dev>
master v1.0.14
René Jochum 4 years ago
parent 4edbd44112
commit 1bfa8e1682

@ -4,9 +4,9 @@ stages:
- publishImageConfig: - publishImageConfig:
dockerfilePath: ./Dockerfile dockerfilePath: ./Dockerfile
buildContext: . buildContext: .
tag: registry.wmk8s.com/rene.jochums.at/homepage:${CICD_GIT_TAG} tag: registry.jochum.dev/rene.jochum.dev/homepage:${CICD_GIT_TAG}
pushRemote: true pushRemote: true
registry: registry.wmk8s.com registry: registry.jochum.dev
- name: Deploy - name: Deploy
steps: steps:
- applyYamlConfig: - applyYamlConfig:
@ -14,7 +14,7 @@ stages:
timeout: 60 timeout: 60
notification: notification:
recipients: recipients:
- recipient: rene@webmeisterei.com - recipient: rene@jochum.dev
notifier: local:n-pjmh6 notifier: local:n-pjmh6
condition: condition:
- Success - Success

@ -5,14 +5,14 @@ COPY . /build
WORKDIR /build WORKDIR /build
RUN hugo -b https://rene.jochums.at -v -t persona RUN hugo -b https://rene.jochum.dev -v -t persona
# Copy to a nginx container # Copy to a nginx container
FROM nginx:1.17-alpine FROM nginx:1.17-alpine
LABEL maintainer="René Jochum <rene@jochums.at>" LABEL maintainer="René Jochum <rene@jochum.dev>"
COPY docker/nginx/nginx.conf /etc/nginx/ COPY docker/nginx/nginx.conf /etc/nginx/
COPY docker/nginx/default.conf /etc/nginx/conf.d/ COPY docker/nginx/default.conf /etc/nginx/conf.d/
COPY --from=0 /build/public /var/www/rene.jochums.at COPY --from=0 /build/public /var/www/rene.jochum.dev

@ -38,7 +38,7 @@ params:
# Settings # Settings
DateFormat: 2. Jan 2006 DateFormat: 2. Jan 2006
edit_link_url: https://git.webmeisterei.com/jochum/rene.jochums.at/tree/master/content/ edit_link_url: https://git.jochum.dev/jochum/rene.jochum.dev/tree/master/content/
description: "Blogging about Programming, Security, Linux, Networking and Web Apps." description: "Blogging about Programming, Security, Linux, Networking and Web Apps."
logo: "/static/author/pcdummy_240x240.png" logo: "/static/author/pcdummy_240x240.png"
@ -50,7 +50,7 @@ params:
# twitter: "pcdummy" # twitter: "pcdummy"
# facebook: "pcdummy" # facebook: "pcdummy"
linkedin: pcdummy linkedin: pcdummy
email: rene@jochums.at email: rene@jochum.dev
skype: pc-dummy skype: pc-dummy
Authors: Authors:

@ -4,11 +4,8 @@ items:
- apiVersion: extensions/v1beta1 - apiVersion: extensions/v1beta1
kind: Deployment kind: Deployment
metadata: metadata:
annotations:
deployment.kubernetes.io/revision: "1"
generation: 3
name: nginx name: nginx
namespace: rene-jochums-at namespace: rene-jochum-dev
spec: spec:
progressDeadlineSeconds: 600 progressDeadlineSeconds: 600
replicas: 1 replicas: 1
@ -27,7 +24,7 @@ items:
container: nginx container: nginx
spec: spec:
containers: containers:
- image: registry.wmk8s.com/rene.jochums.at/homepage:${CICD_GIT_TAG} - image: registry.jochum.dev/rene.jochum.dev/homepage:${CICD_GIT_TAG}
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
name: nginx name: nginx
resources: {} resources: {}
@ -67,15 +64,15 @@ items:
apiVersion: extensions/v1beta1 apiVersion: extensions/v1beta1
metadata: metadata:
annotations: annotations:
certmanager.k8s.io/cluster-issuer: letsencrypt-prod cert-manager.io/cluster-issuer: letsencrypt-prod
kubernetes.io/tls-acme: "true" kubernetes.io/tls-acme: "true"
nginx.ingress.kubernetes.io/ssl-redirect: "true" nginx.ingress.kubernetes.io/ssl-redirect: "true"
generation: 2 generation: 2
name: website name: rene.jochum.dev
namespace: rene-jochums-at namespace: rene-jochum-dev
spec: spec:
rules: rules:
- host: rene.jochums.at - host: rene.jochum.dev
http: http:
paths: paths:
- backend: - backend:
@ -85,4 +82,4 @@ items:
tls: tls:
- hosts: - hosts:
- rene.jochums.at - rene.jochums.at
secretName: website-prod-tls secretName: rene-jochum-dev-tls

@ -4,5 +4,5 @@ server {
error_log /dev/stderr; error_log /dev/stderr;
access_log /dev/stdout; access_log /dev/stdout;
root /var/www/rene.jochums.at; root /var/www/rene.jochum.dev;
} }
Loading…
Cancel
Save