add hoylogo deployment to this repo
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Aaron Riedel 2024-05-29 22:38:08 +02:00
parent 6ae43134b9
commit 651cfe10ba
Signed by: aaron
GPG key ID: 643004654D40D577
10 changed files with 392 additions and 0 deletions

71
hoylogo/base/hoylogo.yaml Normal file
View file

@ -0,0 +1,71 @@
apiVersion: v1
kind: Namespace
metadata:
name: hoylogo
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: hoylogo-deployment
namespace: hoylogo
labels:
app: hoylogo
spec:
replicas: 3
selector:
matchLabels:
app: hoylogo
template:
metadata:
labels:
app: hoylogo
spec:
containers:
- name: hoylogo
image: git.ar21.de/aaron/hoylogo:latest
imagePullPolicy: Always
ports:
- containerPort: 80
livenessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 4
periodSeconds: 3
---
apiVersion: v1
kind: Service
metadata:
name: hoylogo-service
namespace: hoylogo
spec:
selector:
app: hoylogo
ports:
- protocol: TCP
port: 80
targetPort: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: hoylogo-ingress
namespace: hoylogo
annotations:
kubernetes.io/tls-acme: "true"
spec:
rules:
- host: "hoylogo.de"
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: hoylogo-service
port:
number: 80
tls:
- hosts:
- hoylogo.de
secretName: hoylogo-tls-key

View file

@ -0,0 +1,4 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- hoylogo.yaml

View file

@ -0,0 +1,20 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ../../base
images:
- name: git.ar21.de/aaron/hoylogo
newName: git.ar21.de/aaron/hoylogo
newTag: "21"
namespace: hoylogo
patches:
- patch: |-
- op: replace
path: /spec/rules/0/host
value: "hoylogo-prod.apps.yolokube.de"
- op: replace
path: /spec/tls/0/hosts/0
value: "hoylogo-prod.apps.yolokube.de"
target:
kind: Ingress
name: hoylogo-ingress

View file

@ -0,0 +1,27 @@
resources:
- ../../base
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
images:
- name: git.ar21.de/aaron/hoylogo
newName: git.ar21.de/aaron/hoylogo
newTag: staging-20
namespace: hoylogo-staging
patches:
- patch: |-
- op: replace
path: /spec/rules/0/host
value: "staging.hoylogo.de"
- op: replace
path: /spec/tls/0/hosts/0
value: "staging.hoylogo.de"
target:
kind: Ingress
name: hoylogo-ingress
- patch: |-
- op: replace
path: /spec/replicas
value: 1
target:
kind: Deployment
name: hoylogo-deployment

0
hoylogo/prod/.gitkeep Normal file
View file

71
hoylogo/prod/hoylogo.yaml Normal file
View file

@ -0,0 +1,71 @@
apiVersion: v1
kind: Namespace
metadata:
name: hoylogo
---
apiVersion: v1
kind: Service
metadata:
name: hoylogo-service
namespace: hoylogo
spec:
ports:
- port: 80
protocol: TCP
targetPort: 80
selector:
app: hoylogo
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: hoylogo
name: hoylogo-deployment
namespace: hoylogo
spec:
replicas: 3
selector:
matchLabels:
app: hoylogo
template:
metadata:
labels:
app: hoylogo
spec:
containers:
- image: git.ar21.de/aaron/hoylogo:21
imagePullPolicy: Always
livenessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 4
periodSeconds: 3
name: hoylogo
ports:
- containerPort: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
kubernetes.io/tls-acme: "true"
name: hoylogo-ingress
namespace: hoylogo
spec:
rules:
- host: hoylogo-prod.apps.yolokube.de
http:
paths:
- backend:
service:
name: hoylogo-service
port:
number: 80
path: /
pathType: Prefix
tls:
- hosts:
- hoylogo-prod.apps.yolokube.de
secretName: hoylogo-tls-key

0
hoylogo/staging/.gitkeep Normal file
View file

View file

@ -0,0 +1,71 @@
apiVersion: v1
kind: Namespace
metadata:
name: hoylogo-staging
---
apiVersion: v1
kind: Service
metadata:
name: hoylogo-service
namespace: hoylogo-staging
spec:
ports:
- port: 80
protocol: TCP
targetPort: 80
selector:
app: hoylogo
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: hoylogo
name: hoylogo-deployment
namespace: hoylogo-staging
spec:
replicas: 1
selector:
matchLabels:
app: hoylogo
template:
metadata:
labels:
app: hoylogo
spec:
containers:
- image: git.ar21.de/aaron/hoylogo:staging-20
imagePullPolicy: Always
livenessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 4
periodSeconds: 3
name: hoylogo
ports:
- containerPort: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
kubernetes.io/tls-acme: "true"
name: hoylogo-ingress
namespace: hoylogo-staging
spec:
rules:
- host: staging.hoylogo.de
http:
paths:
- backend:
service:
name: hoylogo-service
port:
number: 80
path: /
pathType: Prefix
tls:
- hosts:
- staging.hoylogo.de
secretName: hoylogo-tls-key