feat: add calibre, portainer, egress-gateway, trivy-system, kyverno, olallalab
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: oligo-tools
|
||||
namespace: olallalab
|
||||
labels:
|
||||
app: oligo-tools
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: oligo-tools
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: oligo-tools
|
||||
spec:
|
||||
containers:
|
||||
- name: oligo-tools
|
||||
image: alexandrev/oligo-tools:20231223
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
name: http
|
||||
resources:
|
||||
limits:
|
||||
cpu: 1000m
|
||||
memory: 512Mi
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /
|
||||
port: 8080
|
||||
initialDelaySeconds: 10
|
||||
periodSeconds: 20
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /
|
||||
port: 8080
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 10
|
||||
startupProbe:
|
||||
tcpSocket:
|
||||
port: 8080
|
||||
failureThreshold: 1
|
||||
periodSeconds: 240
|
||||
timeoutSeconds: 240
|
||||
@@ -0,0 +1,42 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: oligo-tools-ingress
|
||||
namespace: olallalab
|
||||
annotations:
|
||||
nginx.ingress.kubernetes.io/rewrite-target: /
|
||||
spec:
|
||||
ingressClassName: public
|
||||
rules:
|
||||
- host: oligo-tools.alexandre-vazquez.cloud
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: oligo-tools
|
||||
port:
|
||||
number: 80
|
||||
---
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: oligo-tools-ingress-internal
|
||||
namespace: olallalab
|
||||
annotations:
|
||||
nginx.ingress.kubernetes.io/rewrite-target: /
|
||||
external-dns.alpha.kubernetes.io/hostname: oligo-tools.alexandre-vazquez.internal
|
||||
spec:
|
||||
ingressClassName: public
|
||||
rules:
|
||||
- host: oligo-tools.alexandre-vazquez.internal
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: oligo-tools
|
||||
port:
|
||||
number: 80
|
||||
@@ -0,0 +1,4 @@
|
||||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
||||
name: olallalab
|
||||
@@ -0,0 +1,13 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: oligo-tools
|
||||
namespace: olallalab
|
||||
labels:
|
||||
app: oligo-tools
|
||||
spec:
|
||||
ports:
|
||||
- port: 80
|
||||
targetPort: 8080
|
||||
selector:
|
||||
app: oligo-tools
|
||||
Reference in New Issue
Block a user