Add admin panel API with CRUD for apps

- Express.js backend with JWT authentication
- CRUD endpoints for apps management
- Health check endpoint
- Dockerfile per admin API (Node 18 Alpine)
- Kubernetes: admin-api deployment, service, ingress
- Admin panel at http://admin.apps.local
- Updated nginx.conf to route /api to admin API
- Fixed ingress rules for separate web and admin services
This commit is contained in:
capitano
2026-03-18 23:01:42 +01:00
parent 533cbed8d3
commit e89989e1d9
17 changed files with 857 additions and 7 deletions

53
k8s/admin-deployment.yaml Normal file
View File

@@ -0,0 +1,53 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: admin-api
namespace: linuxwebapp
labels:
app: admin-api
spec:
replicas: 1
selector:
matchLabels:
app: admin-api
template:
metadata:
labels:
app: admin-api
spec:
containers:
- name: admin-api
image: git.giaco.net/capitano/webapplinux-admin:latest
imagePullPolicy: Always
ports:
- containerPort: 3000
resources:
requests:
memory: "64Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "100m"
env:
- name: ADMIN_TOKEN
valueFrom:
secretKeyRef:
name: admin-secret
key: admin-token
- name: JWT_SECRET
valueFrom:
secretKeyRef:
name: admin-secret
key: jwt-secret
livenessProbe:
httpGet:
path: /health
port: 3000
initialDelaySeconds: 10
periodSeconds: 10
readinessProbe:
httpGet:
path: /health
port: 3000
initialDelaySeconds: 5
periodSeconds: 5

22
k8s/admin-ingress.yaml Normal file
View File

@@ -0,0 +1,22 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: admin-api-ingress
namespace: linuxwebapp
labels:
app: admin-api
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
ingressClassName: nginx
rules:
- host: admin.apps.local
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: admin-api-service
port:
number: 3000

16
k8s/admin-service.yaml Normal file
View File

@@ -0,0 +1,16 @@
apiVersion: v1
kind: Service
metadata:
name: admin-api-service
namespace: linuxwebapp
labels:
app: admin-api
spec:
type: ClusterIP
selector:
app: admin-api
ports:
- port: 3000
targetPort: 3000
protocol: TCP
name: admin-api

View File

@@ -45,3 +45,38 @@ spec:
value: "apps.local"
- name: NGINX_PORT
value: "80"
- name: admin-api
image: git.giaco.net/capitano/webapplinux-admin:latest
imagePullPolicy: Always
ports:
- containerPort: 3000
resources:
requests:
memory: "64Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "100m"
env:
- name: ADMIN_TOKEN
valueFrom:
secretKeyRef:
name: admin-secret
key: admin-token
- name: JWT_SECRET
valueFrom:
secretKeyRef:
name: admin-secret
key: jwt-secret
livenessProbe:
httpGet:
path: /health
port: 3000
initialDelaySeconds: 10
periodSeconds: 10
readinessProbe:
httpGet:
path: /health
port: 3000
initialDelaySeconds: 5
periodSeconds: 5

View File

@@ -20,3 +20,27 @@ spec:
name: linux-app-store-service
port:
number: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: admin-api-ingress
namespace: linuxwebapp
labels:
app: admin-api
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
ingressClassName: nginx
rules:
- host: admin.apps.local
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: admin-api-service
port:
number: 3000

View File

@@ -14,3 +14,24 @@ spec:
targetPort: 80
protocol: TCP
name: http
- port: 3000
targetPort: 3000
protocol: TCP
name: admin-api
---
apiVersion: v1
kind: Service
metadata:
name: admin-api-service
namespace: linuxwebapp
labels:
app: admin-api
spec:
type: ClusterIP
selector:
app: linux-app-store
ports:
- port: 3000
targetPort: 3000
protocol: TCP
name: admin-api