Skip to content

Commit

Permalink
fix(charts): fix relayer servicemonitor (astriaorg#1116)
Browse files Browse the repository at this point in the history
## Summary
Fixing the servicemonitor config which referenced a value which does not
exist.
  • Loading branch information
joroshiba authored May 28, 2024
1 parent 3473703 commit f7f96c5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/sequencer-relayer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ 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.8.1
version: 0.8.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/sequencer-relayer/templates/servicemonitor.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and .Values.serviceMonitor.enabled .Values.config.sequencer.metrics.enabled }}
{{- if and .Values.serviceMonitor.enabled .Values.config.relayer.metrics.enabled }}
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
Expand Down
6 changes: 3 additions & 3 deletions charts/sequencer/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: sequencer-relayer
repository: file://../sequencer-relayer
version: 0.8.1
digest: sha256:aea57e7ee44fd5bf1c851792b6a540a222d76a91518948f2b609966a65f694c4
generated: "2024-05-24T10:23:31.097578-07:00"
version: 0.8.2
digest: sha256:8747b2720dd71b6421d898712d28932d63e50d413eb25aa021ca5c84d409f24b
generated: "2024-05-28T09:14:40.91836-07:00"
4 changes: 2 additions & 2 deletions charts/sequencer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ 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.15.1
version: 0.15.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand All @@ -25,7 +25,7 @@ appVersion: "0.13.0"

dependencies:
- name: sequencer-relayer
version: "0.8.1"
version: "0.8.2"
repository: "file://../sequencer-relayer"
condition: sequencer-relayer.enabled

Expand Down

0 comments on commit f7f96c5

Please sign in to comment.