diff options
Diffstat (limited to '')
-rw-r--r-- | misc/nginx/values.yaml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/misc/nginx/values.yaml b/misc/nginx/values.yaml new file mode 100644 index 0000000..805b596 --- /dev/null +++ b/misc/nginx/values.yaml @@ -0,0 +1,25 @@ +replicaCount: 1 + +image: + repository: nginx + tag: latest + pullPolicy: IfNotPresent + +service: + type: LoadBalancer + port: 80 + +ingress: + enabled: true + annotations: + traefik.ingress.kubernetes.io/router.entrypoints: websecure + cert-manager.io/cluster-issuer: letsencrypt-prod + hosts: + - host: nginx.topkek.cloud + paths: + - / + tls: + - hosts: + - nginx.topkek.cloud + secretName: nginx-tls + |