remove pipeline

This commit is contained in:
Aaron Riedel 2024-10-10 21:31:56 +02:00
parent 114b6560eb
commit a8b31c4c23
Signed by: aaron
GPG key ID: 643004654D40D577
6 changed files with 3 additions and 233 deletions

View file

View file

@ -1,71 +0,0 @@
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:27
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

View file

@ -1,71 +0,0 @@
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-28
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