We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55aba9d commit 0e529f4Copy full SHA for 0e529f4
sync-strategies/deployment.yml
@@ -0,0 +1,20 @@
1
+---
2
+apiVersion: apps/v1
3
+kind: Deployment
4
+metadata:
5
+ name: simple-deployment
6
+spec:
7
+ replicas: 1
8
+ selector:
9
+ matchLabels:
10
+ app: trivial-go-web-app
11
+ template:
12
+ metadata:
13
+ labels:
14
15
+ spec:
16
+ containers:
17
+ - name: webserver-simple
18
+ image: docker.io/kostiscodefresh/gitops-simple-app:v1
19
+ ports:
20
+ - containerPort: 8080
sync-strategies/service.yml
@@ -0,0 +1,12 @@
+apiVersion: v1
+kind: Service
+ name: simple-service
+ type: NodePort
+ - nodePort: 31000
+ protocol: TCP
+ port: 8080
0 commit comments