guard-service/k8s/deployment.yaml

50 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2020-07-18 12:34:52 +02:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: guard-service
namespace: birbnetes
labels:
app: guard-service
spec:
replicas: 1
selector:
matchLabels:
app: guard-service
strategy:
type: Recreate
template:
metadata:
labels:
app: guard-service
spec:
containers:
- name: guard-service
2020-09-19 17:13:10 +02:00
image: registry.kmlabz.com/birbnetes/guard-service
2020-09-19 17:09:32 +02:00
imagePullPolicy: Always
2020-07-18 12:34:52 +02:00
envFrom:
- configMapRef:
name: guard-service
2021-08-19 03:55:36 +02:00
- name: jaeger-agent
image: jaegertracing/jaeger-agent:latest
imagePullPolicy: IfNotPresent
ports:
- containerPort: 5775
name: zk-compact-trft
protocol: UDP
- containerPort: 5778
name: config-rest
protocol: TCP
- containerPort: 6831
name: jg-compact-trft
protocol: UDP
- containerPort: 6832
name: jg-binary-trft
protocol: UDP
- containerPort: 14271
name: admin-http
protocol: TCP
args:
- --reporter.grpc.host-port=dns:///woolsey.tormakristof.eu:14250
2020-07-18 12:34:52 +02:00
imagePullSecrets:
2021-08-19 03:55:36 +02:00
- name: regcred