forked from SAP-samples/kyma-runtime-extension-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeployment.yaml
45 lines (45 loc) · 878 Bytes
/
deployment.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
app: sample-extension-dotnet
name: sample-extension-dotnet
spec:
replicas: 1
selector:
matchLabels:
app: sample-extension-dotnet
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
app: sample-extension-dotnet
spec:
containers:
- image: gabbi/sample-extension-dotnet:0.0.1
name: sample-extension-dotnet
imagePullPolicy: Always
resources: {}
ports:
- containerPort: 80
status: {}
---
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
app: sample-extension-dotnet
name: sample-extension-dotnet
spec:
ports:
- port: 80
protocol: TCP
targetPort: 80
selector:
app: sample-extension-dotnet
type: ClusterIP
status:
loadBalancer: {}