We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63ed6c8 commit 9f24e5cCopy full SHA for 9f24e5c
customer_edge/nginx_manifest.yaml
@@ -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
18
+ name: nginx-deployment
19
+ labels:
20
21
22
+ replicas: 1
23
24
+ matchLabels:
25
26
+ template:
27
+ metadata:
28
29
30
+ spec:
31
+ containers:
32
+ - name: nginx
33
+ image: ghcr.io/codygreen/voltstack_nginx:main
34
35
+ - containerPort: 8080
0 commit comments