forked from Botanical/BotanJS
Use configmap instead of secrets
This commit is contained in:
25
k8s/configmap.yaml
Normal file
25
k8s/configmap.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
kind: ConfigMap
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: astrojs-nginx-ctmpls
|
||||
namespace: default
|
||||
data:
|
||||
default.conf.template: |
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name localhost;
|
||||
|
||||
expires 10d;
|
||||
add_header Cache-Control "public";
|
||||
|
||||
location / {
|
||||
root /usr/share/nginx/html;
|
||||
index index.html index.htm;
|
||||
}
|
||||
|
||||
error_page 500 502 503 504 /50x.html;
|
||||
location = /50x.html {
|
||||
root /usr/share/nginx/html;
|
||||
}
|
||||
}
|
@@ -71,8 +71,8 @@ spec:
|
||||
persistentVolumeClaim:
|
||||
claimName: astrojs-cache
|
||||
- name: nginx-conf-templates
|
||||
secret:
|
||||
secretName: nginx-conf-templates
|
||||
configMap:
|
||||
name: astrojs-nginx-ctmpls
|
||||
|
||||
---
|
||||
|
||||
|
Reference in New Issue
Block a user