diff options
author | makefunstuff <[email protected]> | 2024-06-28 14:50:46 +0200 |
---|---|---|
committer | makefunstuff <[email protected]> | 2024-06-28 14:50:46 +0200 |
commit | 8c6eeb9045125aa3b0666deccc3815e78112ea16 (patch) | |
tree | c0f1453d1b093048391d7328376426270a43f6d4 /misc/nginx/values.yaml | |
parent | 5f14386dcdd3530c79a31678a1a3bf59e3ddb6ef (diff) | |
download | k3s-lab-8c6eeb9045125aa3b0666deccc3815e78112ea16.tar.gz |
though nginx works
Diffstat (limited to 'misc/nginx/values.yaml')
-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 + |