Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
github-merge-queue[bot] committed Aug 12, 2024
1 parent d29ee41 commit b698eee
Show file tree
Hide file tree
Showing 16 changed files with 39 additions and 39 deletions.
2 changes: 1 addition & 1 deletion charts/celestia-local/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.5.0
version: 0.6.0

# 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/composer/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.1.0
version: 0.1.1

# 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/composer/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ apiVersion: v1
kind: ConfigMap
metadata:
namespace: {{ include "composer.namespace" . }}
name: sequencer-private-key
name: composer-private-key
data:
{{ .Values.config.privateKey.secret.filename }}: |
{{ .Values.config.privateKey.devContent }}
Expand Down
8 changes: 4 additions & 4 deletions charts/composer/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
name: composer-env
volumeMounts:
- mountPath: "/var/secrets"
name: sequencer-private-key
name: composer-private-key
startupProbe:
httpGet:
path: /readyz
Expand All @@ -47,14 +47,14 @@ spec:
resources:
{{- toYaml .Values.resources | trim | nindent 12 }}
volumes:
- name: sequencer-private-key
- name: composer-private-key
{{- if .Values.secretProvider.enabled }}
csi:
driver: secrets-store.csi.k8s.io
readOnly: true
volumeAttributes:
secretProviderClass: sequencer-private-key
secretProviderClass: composer-private-key
{{- else }}
configMap:
name: sequencer-private-key
name: composer-private-key
{{- end }}
2 changes: 1 addition & 1 deletion charts/composer/templates/secretproviderclass.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
apiVersion: secrets-store.csi.x-k8s.io/v1
kind: SecretProviderClass
metadata:
name: sequencer-private-key
name: composer-private-key
spec:
provider: {{ .Values.secretProvider.provider }}
parameters:
Expand Down
2 changes: 1 addition & 1 deletion charts/evm-bridge-withdrawer/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.1.1
version: 0.1.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/evm-bridge-withdrawer/templates/servicemonitor.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and .Values.serviceMonitor.enabled .Values.config.relayer.metrics.enabled }}
{{- if and .Values.serviceMonitor.enabled .Values.metrics.enabled }}
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
Expand Down
2 changes: 1 addition & 1 deletion charts/evm-faucet/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type: application
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)

version: 0.1.0
version: 0.1.1

# 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
4 changes: 2 additions & 2 deletions charts/evm-faucet/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ spec:
valueFrom:
secretKeyRef:
name: evm-faucet-private-key
key: {{ .Values.privateKey.secret.key }}
key: {{ .Values.config.privateKey.secret.key }}
{{- end }}
volumeMounts:
- mountPath: /home/faucet
name: {{tpl .Values.config.rollupName . }}-evm-faucet-home-vol
subPath: {{tpl .Values.config.rollupName . }}/faucet
{{- if .Values.secretProvider.enabled }}
- mountPath: /var/secrets
name: faucet-private-key
name: evm-faucet-private-key
{{- end }}
ports:
- containerPort: {{ .Values.ports.faucet }}
Expand Down
2 changes: 1 addition & 1 deletion charts/evm-rollup/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.25.0
version: 0.25.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
12 changes: 6 additions & 6 deletions charts/evm-rollup/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ data:
NO_COLOR: "{{ .Values.global.useTTY }}"
ASTRIA_CONDUCTOR_NO_OTEL: "{{ not .Values.otel.enabled }}"
ASTRIA_CONDUCTOR_CELESTIA_BEARER_TOKEN: "{{ .Values.config.celestia.token }}"
OTEL_EXPORTER_OTLP_ENDPOINT: "{{ .Values.otel.endpoint }}"
OTEL_EXPORTER_OTLP_TRACES_ENDPOINT: "{{ .Values.otel.tracesEndpoint }}"
OTEL_EXPORTER_OTLP_TRACES_TIMEOUT: "{{ .Values.otel.tracesTimeout }}"
OTEL_EXPORTER_OTLP_TRACES_COMPRESSION: "{{ .Values.otel.tracesCompression }}"
OTEL_EXPORTER_OTLP_HEADERS: "{{ .Values.otel.otlpHeaders }}"
OTEL_EXPORTER_OTLP_TRACE_HEADERS: "{{ .Values.otel.traceHeaders }}"
OTEL_EXPORTER_OTLP_ENDPOINT: "{{ tpl .Values.otel.endpoint . }}"
OTEL_EXPORTER_OTLP_TRACES_ENDPOINT: "{{ tpl .Values.otel.tracesEndpoint . }}"
OTEL_EXPORTER_OTLP_TRACES_TIMEOUT: "{{ tpl .Values.otel.tracesTimeout . }}"
OTEL_EXPORTER_OTLP_TRACES_COMPRESSION: "{{ tpl .Values.otel.tracesCompression . }}"
OTEL_EXPORTER_OTLP_HEADERS: "{{ tpl .Values.otel.otlpHeaders . }}"
OTEL_EXPORTER_OTLP_TRACE_HEADERS: "{{ tpl .Values.otel.traceHeaders .}}"
OTEL_SERVICE_NAME: "{{ tpl .Values.otel.serviceNamePrefix . }}-conductor"
{{- if not .Values.global.dev }}
{{- else }}
Expand Down
12 changes: 6 additions & 6 deletions charts/evm-rollup/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -211,12 +211,12 @@ metrics:
otel:
enabled: false
serviceNamePrefix: '{{ include "rollup.name" . }}'
endpoint:
tracesEndpoint:
tracesCompression: gzip
tracesTimeout: 10
otlpHeaders:
traceHeaders:
endpoint: ""
tracesEndpoint: ""
tracesCompression: "gzip"
tracesTimeout: "10"
otlpHeaders: ""
traceHeaders: ""

serviceMonitor:
# set to enable port svc and service monitor
Expand Down
12 changes: 6 additions & 6 deletions charts/evm-stack/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
dependencies:
- name: evm-rollup
repository: file://../evm-rollup
version: 0.25.1
version: 0.25.2
- name: composer
repository: file://../composer
version: 0.1.0
version: 0.1.1
- name: evm-faucet
repository: file://../evm-faucet
version: 0.1.0
version: 0.1.1
- name: evm-bridge-withdrawer
repository: file://../evm-bridge-withdrawer
version: 0.1.1
version: 0.1.2
- name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 15.2.4
- name: blockscout-stack
repository: https://blockscout.github.io/helm-charts
version: 1.6.2
digest: sha256:d337fa8fa4f7c8986527bf03bc7a1511bd1ac196214b35b8c2cf8d99d8e0358b
generated: "2024-07-30T09:09:11.244761-07:00"
digest: sha256:2ceebf8976422c02bc200ad1ad636e1bd83a7b94931a024b5034212ef3fde8b3
generated: "2024-08-11T18:04:44.817194+03:00"
10 changes: 5 additions & 5 deletions charts/evm-stack/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@ 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.3.0
version: 0.3.1

dependencies:
- name: evm-rollup
version: 0.25.1
version: 0.25.2
repository: "file://../evm-rollup"
- name: composer
version: 0.1.0
version: 0.1.1
repository: "file://../composer"
condition: composer.enabled
- name: evm-faucet
version: 0.1.0
version: 0.1.1
repository: "file://../evm-faucet"
condition: evm-faucet.enabled
- name: evm-bridge-withdrawer
version: 0.1.1
version: 0.1.2
repository: "file://../evm-bridge-withdrawer"
condition: evm-bridge-withdrawer.enabled
- name: postgresql
Expand Down
2 changes: 1 addition & 1 deletion charts/sequencer-faucet/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.7.0
version: 0.7.1

# 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-faucet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ config:
amount: 1800

images:
sequencerFaucet: "ghcr.io/astriaorg/seq-faucet:0.6.0"
sequencerFaucet: "ghcr.io/astriaorg/seq-faucet:sha-5c9d64c"

# When deploying in a production environment should use a secret provider
# This is configured for use with GCP, need to set own resource names
Expand Down

0 comments on commit b698eee

Please sign in to comment.