Initial commit from template

This commit is contained in:
Lumina
2025-12-23 04:19:57 +01:00
commit b3d8fe8dfe
76 changed files with 10491 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
*.swp
*.bak
*.tmp
*.orig
*~
# Helm specific
.helmignore
# CI/CD
.github/
.gitlab-ci.yml
.travis.yml
azure-pipelines.yml
# Documentation
README.md
CONTRIBUTING.md
docs/
# IDE
.idea/
.vscode/
*.iml
# Testing
test/
tests/
*.test.yaml

View File

@@ -0,0 +1,16 @@
apiVersion: v2
name: lumina-app
description: A Helm chart for Lumina Next.js applications
type: application
version: 1.0.0
appVersion: "1.0.0"
keywords:
- nextjs
- lumina
- advisori
maintainers:
- name: advisori
email: info@advisori.de
sources:
- https://github.com/advisori/lumina
icon: https://advisori.de/assets/lumina-icon.svg

View File

@@ -0,0 +1,81 @@
🚀 Lumina Application Deployed Successfully!
Your application has been deployed to Kubernetes with the following configuration:
📦 Release Name: {{ .Release.Name }}
🏷️ Namespace: {{ .Release.Namespace }}
📊 Replicas: {{ .Values.replicaCount }}
🖼️ Image: {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}
{{- if .Values.ingress.enabled }}
🌐 Ingress Configuration:
{{- range .Values.ingress.hosts }}
🔗 https://{{ .host }}
{{- end }}
{{- else }}
⚠️ Ingress is disabled. To access the application:
kubectl port-forward svc/{{ include "lumina-app.fullname" . }} 3000:{{ .Values.service.port }} -n {{ .Release.Namespace }}
Then open http://localhost:3000 in your browser.
{{- end }}
📋 Useful Commands:
# View pods
kubectl get pods -l "app.kubernetes.io/name={{ include "lumina-app.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -n {{ .Release.Namespace }}
# View logs
kubectl logs -f deployment/{{ include "lumina-app.fullname" . }} -n {{ .Release.Namespace }}
# View service
kubectl get svc {{ include "lumina-app.fullname" . }} -n {{ .Release.Namespace }}
{{- if .Values.autoscaling.enabled }}
# View autoscaler
kubectl get hpa {{ include "lumina-app.fullname" . }} -n {{ .Release.Namespace }}
{{- end }}
# Update deployment
helm upgrade {{ .Release.Name }} . --namespace {{ .Release.Namespace }}
# Rollback deployment
helm rollback {{ .Release.Name }} -n {{ .Release.Namespace }}
{{- if .Values.persistence.enabled }}
💾 Persistence is enabled at {{ .Values.persistence.mountPath }}
{{- end }}
📊 Monitoring:
- Liveness Probe: {{ .Values.livenessProbe.httpGet.path }}
- Readiness Probe: {{ .Values.readinessProbe.httpGet.path }}
{{- if .Values.autoscaling.enabled }}
- Autoscaling: {{ .Values.autoscaling.minReplicas }}-{{ .Values.autoscaling.maxReplicas }} replicas
- Target CPU: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}%
- Target Memory: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}%
{{- end }}
🔐 Security:
- Non-root user: {{ .Values.securityContext.runAsUser }}
- Read-only filesystem: {{ .Values.securityContext.readOnlyRootFilesystem }}
✅ Next Steps:
1. Verify pods are running: kubectl get pods -n {{ .Release.Namespace }}
2. Check application logs for any errors
3. Test the health endpoint: /api/health
4. Configure monitoring and alerting
5. Set up backup strategy (if using persistence)
📚 Documentation: https://github.com/advisori/lumina
💬 Support: info@advisori.de
---
Generated by Lumina - AI-Powered Development Platform

View File

@@ -0,0 +1,60 @@
{{/*
Expand the name of the chart.
*/}}
{{- define "lumina-app.name" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
{{- end }}
{{/*
Create a default fully qualified app name.
*/}}
{{- define "lumina-app.fullname" -}}
{{- if .Values.fullnameOverride }}
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- $name := default .Chart.Name .Values.nameOverride }}
{{- if contains $name .Release.Name }}
{{- .Release.Name | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }}
{{- end }}
{{- end }}
{{- end }}
{{/*
Create chart name and version as used by the chart label.
*/}}
{{- define "lumina-app.chart" -}}
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
{{- end }}
{{/*
Common labels
*/}}
{{- define "lumina-app.labels" -}}
helm.sh/chart: {{ include "lumina-app.chart" . }}
{{ include "lumina-app.selectorLabels" . }}
{{- if .Chart.AppVersion }}
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
{{- end }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- end }}
{{/*
Selector labels
*/}}
{{- define "lumina-app.selectorLabels" -}}
app.kubernetes.io/name: {{ include "lumina-app.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{- end }}
{{/*
Create the name of the service account to use
*/}}
{{- define "lumina-app.serviceAccountName" -}}
{{- if .Values.serviceAccount.create }}
{{- default (include "lumina-app.fullname" .) .Values.serviceAccount.name }}
{{- else }}
{{- default "default" .Values.serviceAccount.name }}
{{- end }}
{{- end }}

View File

@@ -0,0 +1,10 @@
{{- if .Values.configMap.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "lumina-app.fullname" . }}
labels:
{{- include "lumina-app.labels" . | nindent 4 }}
data:
{{- toYaml .Values.configMap.data | nindent 2 }}
{{- end }}

View File

@@ -0,0 +1,78 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "lumina-app.fullname" . }}
labels:
{{- include "lumina-app.labels" . | nindent 4 }}
spec:
{{- if not .Values.autoscaling.enabled }}
replicas: {{ .Values.replicaCount }}
{{- end }}
selector:
matchLabels:
{{- include "lumina-app.selectorLabels" . | nindent 6 }}
template:
metadata:
annotations:
checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
{{- with .Values.podAnnotations }}
{{- toYaml . | nindent 8 }}
{{- end }}
labels:
{{- include "lumina-app.labels" . | nindent 8 }}
{{- with .Values.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
serviceAccountName: {{ include "lumina-app.serviceAccountName" . }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
containers:
- name: {{ .Chart.Name }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: http
containerPort: {{ .Values.service.targetPort }}
protocol: TCP
env:
{{- toYaml .Values.env | nindent 12 }}
{{- with .Values.envFrom }}
envFrom:
{{- toYaml . | nindent 12 }}
{{- end }}
livenessProbe:
{{- toYaml .Values.livenessProbe | nindent 12 }}
readinessProbe:
{{- toYaml .Values.readinessProbe | nindent 12 }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- if .Values.persistence.enabled }}
volumeMounts:
- name: data
mountPath: {{ .Values.persistence.mountPath }}
{{- end }}
{{- if .Values.persistence.enabled }}
volumes:
- name: data
persistentVolumeClaim:
claimName: {{ include "lumina-app.fullname" . }}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}

View File

@@ -0,0 +1,32 @@
{{- if .Values.autoscaling.enabled }}
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: {{ include "lumina-app.fullname" . }}
labels:
{{- include "lumina-app.labels" . | nindent 4 }}
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: {{ include "lumina-app.fullname" . }}
minReplicas: {{ .Values.autoscaling.minReplicas }}
maxReplicas: {{ .Values.autoscaling.maxReplicas }}
metrics:
{{- if .Values.autoscaling.targetCPUUtilizationPercentage }}
- type: Resource
resource:
name: cpu
target:
type: Utilization
averageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
{{- end }}
{{- if .Values.autoscaling.targetMemoryUtilizationPercentage }}
- type: Resource
resource:
name: memory
target:
type: Utilization
averageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
{{- end }}
{{- end }}

View File

@@ -0,0 +1,41 @@
{{- if .Values.ingress.enabled -}}
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ include "lumina-app.fullname" . }}
labels:
{{- include "lumina-app.labels" . | nindent 4 }}
{{- with .Values.ingress.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
{{- if .Values.ingress.className }}
ingressClassName: {{ .Values.ingress.className }}
{{- end }}
{{- if .Values.ingress.tls }}
tls:
{{- range .Values.ingress.tls }}
- hosts:
{{- range .hosts }}
- {{ . | quote }}
{{- end }}
secretName: {{ .secretName }}
{{- end }}
{{- end }}
rules:
{{- range .Values.ingress.hosts }}
- host: {{ .host | quote }}
http:
paths:
{{- range .paths }}
- path: {{ .path }}
pathType: {{ .pathType }}
backend:
service:
name: {{ include "lumina-app.fullname" $ }}
port:
number: {{ $.Values.service.port }}
{{- end }}
{{- end }}
{{- end }}

View File

@@ -0,0 +1,13 @@
{{- if .Values.podDisruptionBudget.enabled }}
apiVersion: policy/v1
kind: PodDisruptionBudget
metadata:
name: {{ include "lumina-app.fullname" . }}
labels:
{{- include "lumina-app.labels" . | nindent 4 }}
spec:
minAvailable: {{ .Values.podDisruptionBudget.minAvailable }}
selector:
matchLabels:
{{- include "lumina-app.selectorLabels" . | nindent 6 }}
{{- end }}

View File

@@ -0,0 +1,17 @@
{{- if .Values.persistence.enabled }}
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: {{ include "lumina-app.fullname" . }}
labels:
{{- include "lumina-app.labels" . | nindent 4 }}
spec:
accessModes:
- {{ .Values.persistence.accessMode }}
{{- if .Values.persistence.storageClass }}
storageClassName: {{ .Values.persistence.storageClass }}
{{- end }}
resources:
requests:
storage: {{ .Values.persistence.size }}
{{- end }}

View File

@@ -0,0 +1,11 @@
{{- if .Values.secrets.enabled }}
apiVersion: v1
kind: Secret
metadata:
name: {{ .Values.secrets.name | default (include "lumina-app.fullname" .) }}
labels:
{{- include "lumina-app.labels" . | nindent 4 }}
type: Opaque
stringData:
{{- toYaml .Values.secrets.data | nindent 2 }}
{{- end }}

View File

@@ -0,0 +1,19 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "lumina-app.fullname" . }}
labels:
{{- include "lumina-app.labels" . | nindent 4 }}
{{- with .Values.service.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "lumina-app.selectorLabels" . | nindent 4 }}

View File

@@ -0,0 +1,13 @@
{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "lumina-app.serviceAccountName" . }}
labels:
{{- include "lumina-app.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
automountServiceAccountToken: {{ .Values.serviceAccount.automount }}
{{- end }}

191
helm/lumina-app/values.yaml Normal file
View File

@@ -0,0 +1,191 @@
# Default values for lumina-app
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
# Number of pod replicas
replicaCount: 2
# Container image configuration
image:
repository: harbor.advisori.de/lumina/app
pullPolicy: IfNotPresent
tag: "latest"
# Image pull secrets for private registries
imagePullSecrets:
- name: harbor-registry-secret
# Override the default name
nameOverride: ""
fullnameOverride: ""
# Service account configuration
serviceAccount:
create: true
automount: true
annotations: {}
name: ""
# Pod annotations
podAnnotations: {}
# Pod labels
podLabels:
app.kubernetes.io/component: frontend
app.kubernetes.io/part-of: lumina
# Pod security context
podSecurityContext:
runAsNonRoot: true
runAsUser: 1001
fsGroup: 1001
# Container security context
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: false
runAsNonRoot: true
runAsUser: 1001
# Service configuration
service:
type: ClusterIP
port: 80
targetPort: 3000
annotations: {}
# Ingress configuration
ingress:
enabled: true
className: "nginx"
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
nginx.ingress.kubernetes.io/ssl-redirect: "true"
hosts:
- host: app.advisori.de
paths:
- path: /
pathType: Prefix
tls:
- secretName: lumina-app-tls
hosts:
- app.advisori.de
# Resource limits and requests
resources:
limits:
cpu: 1000m
memory: 1Gi
requests:
cpu: 100m
memory: 256Mi
# Horizontal Pod Autoscaler
autoscaling:
enabled: true
minReplicas: 2
maxReplicas: 10
targetCPUUtilizationPercentage: 80
targetMemoryUtilizationPercentage: 80
# Liveness probe configuration
livenessProbe:
httpGet:
path: /api/health
port: 3000
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 3
# Readiness probe configuration
readinessProbe:
httpGet:
path: /api/health
port: 3000
initialDelaySeconds: 10
periodSeconds: 5
timeoutSeconds: 3
successThreshold: 1
failureThreshold: 3
# Node selector for pod scheduling
nodeSelector: {}
# Tolerations for pod scheduling
tolerations: []
# Affinity rules for pod scheduling
affinity: {}
# Environment variables
env:
- name: NODE_ENV
value: "production"
- name: PORT
value: "3000"
- name: NEXT_TELEMETRY_DISABLED
value: "1"
# Environment variables from secrets
envFrom:
- secretRef:
name: lumina-app-secrets
# Persistent Volume Claims (optional)
persistence:
enabled: false
storageClass: ""
accessMode: ReadWriteOnce
size: 1Gi
mountPath: /app/data
# ConfigMap for additional configuration
configMap:
enabled: false
data: {}
# Secrets (reference existing secrets)
secrets:
enabled: true
name: lumina-app-secrets
data: {}
# DATABASE_URL: ""
# SUPABASE_URL: ""
# SUPABASE_ANON_KEY: ""
# ANTHROPIC_API_KEY: ""
# Network Policy
networkPolicy:
enabled: false
policyTypes:
- Ingress
- Egress
ingress:
- from:
- podSelector:
matchLabels:
app.kubernetes.io/component: ingress-nginx
egress:
- to:
- namespaceSelector: {}
ports:
- protocol: TCP
port: 443
- protocol: TCP
port: 80
# Pod Disruption Budget
podDisruptionBudget:
enabled: true
minAvailable: 1
# Service Monitor for Prometheus (optional)
serviceMonitor:
enabled: false
interval: 30s
scrapeTimeout: 10s