mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 17:04:32 +00:00
Mirrors commit b355855 (auth-side rename). The kustomization at deploy/opentofu/k3s/manifests/knoe/kustomization.yaml has been referencing knoe-* names since the rebrand; kustomize was broken on the k3s deploy mode until this lands. Five git mv: prole-configmap.yaml -> knoe-configmap.yaml prole-deployment.yaml -> knoe-deployment.yaml prole-service.yaml -> knoe-service.yaml prole-kdc-configmap.yaml -> knoe-kdc-configmap.yaml prole-kdc-secrets.example.yaml -> knoe-kdc-secrets.example.yaml Plus content sweep of knoe-kdc-configmap.yaml: replaced stale PROLE.LOCAL/PROLE.ORG realm refs and PROLE_KDC_* env vars with KNOE.DEV/KNOE_KDC_* to match the canonical GKE configmap. Closes queue item #2 in docs/TODO.md (drift R5). Co-authored-by: Junie <junie@jetbrains.com>
33 lines
752 B
YAML
33 lines
752 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: knoe-nginx-config
|
|
data:
|
|
nginx.conf: |
|
|
user nginx;
|
|
worker_processes auto;
|
|
error_log /var/log/nginx/error.log warn;
|
|
pid /var/run/nginx.pid;
|
|
|
|
events { worker_connections 1024; }
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
sendfile on;
|
|
keepalive_timeout 65;
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
server_name _;
|
|
ssl_certificate /etc/nginx/tls/tls.crt;
|
|
ssl_certificate_key /etc/nginx/tls/tls.key;
|
|
|
|
# Placeholder onboarding app
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
}
|
|
}
|
|
}
|