Skip to content

Commit

Permalink
Merge pull request #436 from celo-org/proposer-ternary-function
Browse files Browse the repository at this point in the history
Fix proposer ternary
  • Loading branch information
jcortejoso authored Nov 26, 2024
2 parents 151835c + c0b3b55 commit cf3621a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/op-proposer/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: op-proposer
apiVersion: v2
version: 0.2.2
version: 0.2.3
description: Celo implementation for op-proposer client (Optimism Rollup)
home: https://clabs.co
sources:
Expand Down
2 changes: 1 addition & 1 deletion charts/op-proposer/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# op-proposer

![Version: 0.2.2](https://img.shields.io/badge/Version-0.2.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.0.0](https://img.shields.io/badge/AppVersion-v1.0.0-informational?style=flat-square)
![Version: 0.2.3](https://img.shields.io/badge/Version-0.2.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.0.0](https://img.shields.io/badge/AppVersion-v1.0.0-informational?style=flat-square)

Celo implementation for op-proposer client (Optimism Rollup)

Expand Down
2 changes: 1 addition & 1 deletion charts/op-proposer/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,5 +190,5 @@ spec:
{{- if .Values.config.signer.tls.enabled }}
- name: pki
secret:
secretName: {{ ternary (printf "%s-%s" (include "op-batcher.fullname" .) "tls" ) .Values.config.signer.tls.externalSecret.tlsSecretName .Values.config.signer.tls.certManager.enabled }}
secretName: {{ ternary (printf "%s-%s" (include "op-proposer.fullname" .) "tls" ) .Values.config.signer.tls.externalSecret.tlsSecretName .Values.config.signer.tls.certManager.enabled }}
{{- end }}

0 comments on commit cf3621a

Please sign in to comment.