Skip to content

Commit

Permalink
fixed Jaeger / MongoDb / StatsD YAML (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronontheweb authored Jun 24, 2020
1 parent d47196f commit 1bf0695
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion k8s/jaeger-all-in-one.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
apiVersion: v1
kind: List
items:
- apiVersion: extensions/v1beta1
- apiVersion: apps/v1
kind: Deployment
metadata:
namespace: akka-cqrs
Expand All @@ -26,6 +26,9 @@ items:
app.kubernetes.io/component: all-in-one
spec:
replicas: 1
selector:
matchLabels:
app: jaeger
strategy:
type: Recreate
template:
Expand Down
5 changes: 4 additions & 1 deletion k8s/mongodb-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@ spec:
selector:
app: mongodb
---
apiVersion: apps/v1beta1
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: akka-cqrs
name: mongodb
spec:
replicas: 1
selector:
matchLabels:
app: mongodb
template:
metadata:
labels:
Expand Down
5 changes: 4 additions & 1 deletion k8s/statsd-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
app: statsd
type: LoadBalancer
---
apiVersion: apps/v1beta1
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: akka-cqrs
Expand All @@ -49,6 +49,9 @@ metadata:
app: statsd
spec:
replicas: 1
selector:
matchLabels:
app: statsd
template:
metadata:
labels:
Expand Down

0 comments on commit 1bf0695

Please sign in to comment.