mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-28 19:23:22 +01:00
pihole and nginx update
This commit is contained in:
parent
d91bf39c3e
commit
dec4694578
@ -13,7 +13,7 @@ services:
|
|||||||
- "80:80/tcp"
|
- "80:80/tcp"
|
||||||
- "443:443/tcp"
|
- "443:443/tcp"
|
||||||
environment:
|
environment:
|
||||||
TZ: 'America/Chicago'
|
TZ: 'Europe/Berlin'
|
||||||
WEBPASSWORD: 'testtest'
|
WEBPASSWORD: 'testtest'
|
||||||
volumes:
|
volumes:
|
||||||
- etcd:/etc/pihole
|
- etcd:/etc/pihole
|
||||||
|
21
kubernetes/research/nginx.yaml
Normal file
21
kubernetes/research/nginx.yaml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: nginx
|
||||||
|
labels:
|
||||||
|
app: nginx
|
||||||
|
spec:
|
||||||
|
replicas: 2
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: nginx
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: nginx
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: nginx
|
||||||
|
image: nginx
|
||||||
|
ports:
|
||||||
|
- containerPort: 80
|
Loading…
Reference in New Issue
Block a user