working version

This commit is contained in:
Sergo 2022-11-10 20:36:41 +02:00
commit 41f1ce0a4d
2 changed files with 88 additions and 0 deletions

7
README.md Normal file
View File

@ -0,0 +1,7 @@
# Nginx lab
Original source: https://github.com/codemowers/lab-05-nginx
In this example:
* Nginx is deployed with some sample content to serve the static portion of an
web application.

81
application.yml Normal file
View File

@ -0,0 +1,81 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-content
data:
index.html: |
<!DOCTYPE html>
<html lang="en">
<body>
Hello worldik
blaba
</body>
</html>
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx
spec:
revisionHistoryLimit: 0
replicas: 2
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: library/nginx
ports:
- name: nginx
containerPort: 80
volumeMounts:
- name: nginx-content
mountPath: /usr/share/nginx/html
volumes:
- name: nginx-content
configMap:
name: nginx-content
---
apiVersion: v1
kind: Service
metadata:
name: nginx
labels:
app: nginx
spec:
selector:
app: nginx
ports:
- protocol: TCP
port: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: nginx
annotations:
kubernetes.io/ingress.class: shared
traefik.ingress.kubernetes.io/router.entrypoints: websecure
traefik.ingress.kubernetes.io/router.tls: "true"
external-dns.alpha.kubernetes.io/target: traefik.codemowers.ee
spec:
rules:
- host: venyae.codemowers.ee
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: nginx
port:
number: 80
tls:
- hosts:
- "*.codemowers.ee"