Skip to content

fix: port naming & protocol issues for otel-collector #24

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 13, 2023
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
2 changes: 1 addition & 1 deletion stable/app/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.5.3
version: 0.5.4
20 changes: 10 additions & 10 deletions stable/app/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,25 +81,25 @@ spec:
ports:
- containerPort: 1888
name: pprof
protocol: tcp
protocol: TCP
- containerPort: 8888
name: prometheus_self
protocol: tcp
name: prometheusself
protocol: TCP
- containerPort: 8889
name: prometheus
protocol: tcp
protocol: TCP
- containerPort: 13133
name: healthcheck
protocol: tcp
protocol: TCP
- containerPort: 4317
name: otlpgrpcreceiver
protocol: tcp
name: otlpgrpcrecv
protocol: TCP
- containerPort: 4318
name: otlphttpreceiver
protocol: tcp
name: otlphttprecv
protocol: TCP
- containerPort: 55679
name: zpages
protocol: tcp
protocol: TCP
volumeMounts:
- name: otelcollector-conf
mountPath: /etc/otelcollector/
Expand Down