This commit is contained in:
2025-05-02 16:48:27 +02:00
parent 48ef406428
commit 2c03527d00
6 changed files with 106 additions and 1 deletions

View File

@@ -3,9 +3,14 @@
FORKED FROM https://github.com/hotheadhacker/no-as-a-service
## local modifications
- answer on / instead of /no
- add /health endpoint for kube readiness probe
- add Dockerfile to build this sh*t
- kustomization in [deploy](deploy) directory (use your own registry)
## intro
<p align="center">
<img src="https://raw.githubusercontent.com/hotheadhacker/no-as-a-service/main/assets/imgs/naas-with-no-logo-bunny.png" width="800" alt="No-as-a-Service Banner" width="70%"/>

42
deploy/deploy.yaml Normal file
View File

@@ -0,0 +1,42 @@
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
app: noaas
name: noaas
spec:
replicas: 2
selector:
matchLabels:
app: noaas
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
app: noaas
spec:
securityContext:
runAsUser: 1000
runAsGroup: 1000
containers:
- image: noaas
imagePullPolicy: IfNotPresent
name: noaas
ports:
- containerPort: 3000
name: http
readinessProbe:
httpGet:
path: /health
port: 3000
resources:
limits:
cpu: 1
memory: 128Mi
requests:
cpu: 10m
memory: 50Mi
securityContext:
readOnlyRootFilesystem: true

23
deploy/ingress.yaml Normal file
View File

@@ -0,0 +1,23 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
creationTimestamp: null
name: noaas
spec:
rules:
- host: no.parano.ch
http:
paths:
- backend:
service:
name: noaas
port:
name: http
path: /
pathType: Prefix
tls:
- hosts:
- no.parano.ch
secretName: noaas-tls

12
deploy/kustomization.yaml Normal file
View File

@@ -0,0 +1,12 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: noaas
resources:
- namespace.yaml
- deploy.yaml
- service.yaml
- ingress.yaml
images:
- name: noaas
newName: <my-harbor-url>/library/no-as-a-service
newTag: v0.0.5

7
deploy/namespace.yaml Normal file
View File

@@ -0,0 +1,7 @@
apiVersion: v1
kind: Namespace
metadata:
creationTimestamp: null
name: noaas
spec: {}
status: {}

16
deploy/service.yaml Normal file
View File

@@ -0,0 +1,16 @@
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
app: noaas
name: noaas
spec:
ports:
- name: http
port: 80
protocol: TCP
targetPort: http
selector:
app: noaas
type: ClusterIP