mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
docs - fix k8s examples
This commit is contained in:
parent
fee5021c4b
commit
ab00187624
1 changed files with 4 additions and 4 deletions
|
|
@ -176,7 +176,7 @@ You will find more settings about reverse proxy in the [settings section](settin
|
|||
- name: app
|
||||
image: nginxdemos/nginx-hello
|
||||
ports:
|
||||
- containerPort: 80
|
||||
- containerPort: 8080
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
|
|
@ -188,7 +188,7 @@ You will find more settings about reverse proxy in the [settings section](settin
|
|||
ports:
|
||||
- protocol: TCP
|
||||
port: 80
|
||||
targetPort: 80
|
||||
targetPort: 8080
|
||||
```
|
||||
|
||||
Here is the corresponding Ingress definition to serve and protect the web application :
|
||||
|
|
@ -588,7 +588,7 @@ You will find more settings about reverse proxy in the [settings section](settin
|
|||
- name: app1
|
||||
image: nginxdemos/nginx-hello
|
||||
ports:
|
||||
- containerPort: 80
|
||||
- containerPort: 8080
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
|
|
@ -600,7 +600,7 @@ You will find more settings about reverse proxy in the [settings section](settin
|
|||
ports:
|
||||
- protocol: TCP
|
||||
port: 80
|
||||
targetPort: 80
|
||||
targetPort: 8080
|
||||
```
|
||||
|
||||
Here is the corresponding Ingress definition to serve and protect the web applications :
|
||||
|
|
|
|||
Loading…
Reference in a new issue