Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

fix(chart): update port for Zipkin Pod and Service #907

Merged
merged 1 commit into from
Jun 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/osm/templates/zipkin-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ spec:
- name: zipkin
image: openzipkin/zipkin:2.21.4
ports:
- containerPort: {{.Values.OpenServiceMesh.grafana.port}}
- containerPort: {{.Values.OpenServiceMesh.zipkin.port}}
resources:
limits:
cpu: 500m
memory: 512M
requests:
cpu: 100m
memory: 256M
memory: 256M
4 changes: 2 additions & 2 deletions charts/osm/templates/zipkin-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ spec:
app: zipkin
ports:
- protocol: TCP
port: {{.Values.OpenServiceMesh.grafana.port}}
targetPort: {{.Values.OpenServiceMesh.grafana.port}}
port: {{.Values.OpenServiceMesh.zipkin.port}}
targetPort: {{.Values.OpenServiceMesh.zipkin.port}}
type: ClusterIP