Skip to content

Commit

Permalink
Remove init container used to wait for jaeger init
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpollet committed Aug 21, 2020
1 parent 64b9434 commit 61c8be6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 17 deletions.
3 changes: 1 addition & 2 deletions helm/chart/maesh/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
apiVersion: v2
name: maesh
version: 2.1.2
appVersion: v1.3.2
description: Maesh - Simpler Service Mesh
type: application
keywords:
- traefik
- mesh
Expand All @@ -24,7 +24,6 @@ maintainers:
email: harold@containo.us
- name: kevinpollet
email: kevin@containo.us
engine: gotpl
icon: https://raw.githubusercontent.com/containous/maesh/v1.2/docs/content/assets/img/maesh.png
dependencies:
- name: tracing
Expand Down
16 changes: 1 addition & 15 deletions helm/chart/maesh/templates/mesh/mesh-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,6 @@ spec:
tolerations:
{{ toYaml . | indent 8 }}
{{- end }}
{{- if .Values.tracing.deploy }}
initContainers:
- name: wait-for-jaeger-init
image: groundnuty/k8s-wait-for:v1.3
args:
- "service"
- "-lapp.kubernetes.io/name=jaeger,app.kubernetes.io/component=agent"
resources:
requests:
memory: "10Mi"
cpu: "50m"
limits:
memory: "20Mi"
cpu: "100m"
{{- end }}
containers:
- name: maesh-mesh
image: {{ include "maesh.meshImage" . | quote }}
Expand Down Expand Up @@ -110,6 +95,7 @@ spec:
{{- else }}
- {{ printf "--tracing.jaeger.samplingServerURL=http://jaeger-agent.%s.svc.%s:5778/sampling" .Release.Namespace (default "cluster.local" .Values.clusterDomain) | quote }}
{{- end }}
- "--tracing.jaeger.disableAttemptReconnecting=false"
{{- end }}
{{- if .Values.tracing.datadog }}
{{- if .Values.tracing.datadog.localagenthostport }}
Expand Down

0 comments on commit 61c8be6

Please sign in to comment.