mirror of
https://github.com/furyhawk/cloudy.git
synced 2026-05-24 17:06:00 +00:00
Refactor Docker and Kubernetes configurations to update Redis volume mapping and constraints for Docmost service
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
apiVersion: traefik.containo.us/v1alpha1
|
||||
kind: TraefikService
|
||||
metadata:
|
||||
name: nginx-wrr
|
||||
namespace: default
|
||||
spec:
|
||||
weighted:
|
||||
services:
|
||||
- name: nginx-deploy-main
|
||||
port: 80
|
||||
weight: 1
|
||||
- name: nginx-deploy-blue
|
||||
port: 80
|
||||
weight: 1
|
||||
- name: nginx-deploy-green
|
||||
port: 80
|
||||
weight: 1
|
||||
---
|
||||
apiVersion: traefik.containo.us/v1alpha1
|
||||
kind: IngressRoute
|
||||
metadata:
|
||||
name: nginx
|
||||
namespace: default
|
||||
spec:
|
||||
entryPoints:
|
||||
- web
|
||||
routes:
|
||||
- match: Host(`nginx.example.com`)
|
||||
kind: Rule
|
||||
services:
|
||||
- name: nginx-wrr
|
||||
kind: TraefikService
|
||||
@@ -0,0 +1,15 @@
|
||||
|
||||
additionalArguments:
|
||||
- --certificatesresolvers.letsencrypt.acme.tlschallenge=true
|
||||
- --certificatesresolvers.letsencrypt.acme.email=test@hello.com
|
||||
- --certificatesresolvers.letsencrypt.acme.storage=/data/acme.json
|
||||
- --certificatesresolvers.letsencrypt.acme.caserver=https://acme-staging-v02.api.letsencrypt.org/directory
|
||||
|
||||
|
||||
# Lets Encrypt servers
|
||||
|
||||
# Staging
|
||||
# https://acme-staging-v02.api.letsencrypt.org/directory
|
||||
|
||||
# Production Lets Encrypt
|
||||
# https://acme-v02.api.letsencrypt.org/directory
|
||||
Reference in New Issue
Block a user