-
Notifications
You must be signed in to change notification settings - Fork 0
/
kube.yaml
60 lines (59 loc) · 1.38 KB
/
kube.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: sample-dev
namespace: dev
spec:
replicas: 1
template:
metadata:
name: sample-app-dev
labels:
run: sample-app-dev
annotations:
sidecar.istio.io/inject: "false"
spec:
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
podAffinityTerm:
labelSelector:
matchExpressions:
- key: run
operator: In
values:
- springtestdev
topologyKey: kubernetes.io/hostname
containers:
- name: sample-microservice
image: registry.ng.bluemix.net/jason-test/sample_repo:latest
ports:
- containerPort: 8080
resources:
limits:
cpu: 2000m
memory: 1Gi
requests:
cpu: 500m
memory: 1Gi
livenessProbe:
tcpSocket:
port: 8080
initialDelaySeconds: 300
periodSeconds: 10
timeoutSeconds: 1
---
apiVersion: v1
kind: Service
metadata:
name: sample-app-dev
labels:
run: sample-app-dev
spec:
selector:
run: sample-app-dev
ports:
- protocol: TCP
port: 8080
type: LoadBalancer