restructure: organize excalidraw under namespace folder #60

Closed
gitea-admin wants to merge 6 commits from orion/auto/restructure-organize-excalidraw-under-na-1779056868033 into main
4 changed files with 49 additions and 12 deletions
@@ -0,0 +1,29 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: excalidraw
namespace: excalidraw
labels:
app: excalidraw
spec:
replicas: 1
selector:
matchLabels:
app: excalidraw
template:
metadata:
labels:
app: excalidraw
spec:
containers:
- name: excalidraw
image: docker.io/excalidraw/excalidraw:latest
ports:
- containerPort: 80
resources:
limits:
cpu: "250m"
memory: "256Mi"
requests:
cpu: "100m"
memory: "128Mi"
@@ -2,17 +2,13 @@ apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: excalidraw
namespace: apps
namespace: excalidraw
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
traefik.ingress.kubernetes.io/router.entrypoints: web,websecure
traefik.ingress.kubernetes.io/router.tls: "true"
spec:
ingressClassName: traefik
tls:
- hosts:
- excalidraw.khalisio.com
secretName: excalidraw-tls
rules:
- host: excalidraw.khalisio.com
http:
@@ -24,3 +20,7 @@ spec:
name: excalidraw
port:
number: 80
tls:
- hosts:
- excalidraw.khalisio.com
secretName: excalidraw-tls
@@ -2,12 +2,14 @@ apiVersion: v1
kind: Service
metadata:
name: excalidraw
namespace: apps
namespace: excalidraw
labels:
app: excalidraw
spec:
type: ClusterIP
ports:
- port: 80
targetPort: 80
protocol: TCP
selector:
app: excalidraw
ports:
- name: http
port: 80
targetPort: 80
type: ClusterIP
+6
View File
@@ -0,0 +1,6 @@
apiVersion: v1
kind: Namespace
metadata:
name: excalidraw
labels:
kubernetes.io/metadata.name: excalidraw