From 2c24374021ca585f11616e58bf1dfefdeb2ff12d Mon Sep 17 00:00:00 2001 From: SeanOMik Date: Thu, 20 Apr 2023 17:13:47 -0400 Subject: [PATCH] Dont use a configmapGenerator --- cluster/apps/default/cdn/configmap.yaml | 37 +++++++++++++++++++++ cluster/apps/default/cdn/helm-release.yaml | 4 +++ cluster/apps/default/cdn/kustomization.yaml | 8 ++--- 3 files changed, 43 insertions(+), 6 deletions(-) create mode 100644 cluster/apps/default/cdn/configmap.yaml diff --git a/cluster/apps/default/cdn/configmap.yaml b/cluster/apps/default/cdn/configmap.yaml new file mode 100644 index 0000000..e441c49 --- /dev/null +++ b/cluster/apps/default/cdn/configmap.yaml @@ -0,0 +1,37 @@ +kind: ConfigMap +apiVersion: v1 +metadata: + name: nginx-cdn-configmap + namespace: default +data: + nginx.conf: | + events {} + http { + server { + listen 80 backlog=16384; + root /var/www/html; + # security headers + add_header X-XSS-Protection "1; mode=block" always; + add_header X-Content-Type-Options "nosniff" always; + add_header Referrer-Policy "no-referrer-when-downgrade" always; + add_header Content-Security-Policy "default-src 'self' http: https: ws: wss: data: blob: 'unsafe-inline'; frame-ancestors 'self';" always; + add_header Permissions-Policy "interest-cohort=()" always; + add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always; + + location / { + root /data; + sendfile on; + sendfile_max_chunk 128m; + tcp_nopush on; + tcp_nodelay on; + keepalive_timeout 65; + limit_except GET HEAD { deny all; } + #autoindex on; + default_type application/octet-stream; + charset UTF-8; + + fancyindex on; + fancyindex_exact_size off; # human readable file sizes + } + } + } \ No newline at end of file diff --git a/cluster/apps/default/cdn/helm-release.yaml b/cluster/apps/default/cdn/helm-release.yaml index 4a12a38..1b90713 100644 --- a/cluster/apps/default/cdn/helm-release.yaml +++ b/cluster/apps/default/cdn/helm-release.yaml @@ -19,6 +19,10 @@ spec: repository: oci.seedno.de/seednode/nginx tag: latest + args: + - -c + - /config/nginx.conf + service: main: ports: diff --git a/cluster/apps/default/cdn/kustomization.yaml b/cluster/apps/default/cdn/kustomization.yaml index 188bca6..c60ef89 100644 --- a/cluster/apps/default/cdn/kustomization.yaml +++ b/cluster/apps/default/cdn/kustomization.yaml @@ -1,9 +1,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: -- ./helm-release.yaml -configMapGenerator: -- name: nginx-cdn-configmap - namespace: default - files: - - ./nginx.conf \ No newline at end of file +- ./configmap.yaml +- ./helm-release.yaml \ No newline at end of file