traefik and portainer updates

This commit is contained in:
xcad2k
2021-11-29 08:41:39 +01:00
parent 07c6afcbed
commit 6c7e6787b1
9 changed files with 171 additions and 33 deletions

View File

@@ -17,7 +17,10 @@ spec:
name: mysql
env:
- name: MYSQL_ROOT_PASSWORD
value: "password-in-cleartext"
valueFrom:
secretKeyRef:
name: mysql-secret
key: root-pass
ports:
- name: mysql
containerPort: 3306

View File

@@ -21,5 +21,8 @@ data:
root /usr/share/nginx/html;
index index.html index.htm;
}
location /test {
return 401;
}
}
}

View File

@@ -16,6 +16,8 @@ spec:
- name: nginx-https
image: nginx
ports:
- name: web
containerPort: 80
- name: secureweb
containerPort: 443
volumeMounts:
@@ -35,4 +37,32 @@ spec:
secretName: nginx-https-secret
- name: nginx-https-vol
hostPath:
path: /var/nginxserver
path: /var/nginxserver
---
apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-https-cm
data:
nginx.conf: |
user nginx;
worker_processes 1;
events {
worker_connections 10240;
}
http {
server {
listen 80;
listen 443 ssl;
server_name _;
ssl_certificate /etc/nginx/ssl/server-cert.pem;
ssl_certificate_key /etc/nginx/ssl/server-key.pem;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}
}