Skip to content

Commit 63ed6c8

Browse files
committed
update manifest
1 parent 5b70563 commit 63ed6c8

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

regional_edge/nginx_manifest.yaml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
kind: Service
2+
apiVersion: v1
3+
metadata:
4+
name: nginx
5+
spec:
6+
ports:
7+
- protocol: TCP
8+
port: 8080
9+
targetPort: 8080
10+
selector:
11+
app: nginx
12+
type: ClusterIP
13+
sessionAffinity: None
14+
---
15+
apiVersion: apps/v1
16+
kind: Deployment
17+
metadata:
18+
name: nginx-deployment
19+
labels:
20+
app: nginx
21+
spec:
22+
replicas: 1
23+
selector:
24+
matchLabels:
25+
app: nginx
26+
template:
27+
metadata:
28+
labels:
29+
app: nginx
30+
spec:
31+
containers:
32+
- name: nginx
33+
image: ghcr.io/codygreen/voltstack_nginx:main
34+
ports:
35+
- containerPort: 8080

0 commit comments

Comments
 (0)