Skip to content

Commit

Permalink
rollup-explorer-backend
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaizet-ledger committed Sep 20, 2024
1 parent 9d12ca4 commit 3bbe54d
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/rollup-explorer-backend/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: v2
description: rollup-explorer-backend helm charts
name: rollup-explorer-backend
version: 0.0.3
version: 0.0.4
appVersion: v0.1.0
kubeVersion: ">=1.22.0-0"
maintainers:
Expand Down
3 changes: 2 additions & 1 deletion charts/rollup-explorer-backend/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# rollup-explorer-backend

![Version: 0.0.3](https://img.shields.io/badge/Version-0.0.3-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)
![Version: 0.0.4](https://img.shields.io/badge/Version-0.0.4-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)

rollup-explorer-backend helm charts

Expand Down Expand Up @@ -74,6 +74,7 @@ Kubernetes: `>=1.22.0-0`
| resources.limits.memory | string | `"6Gi"` | |
| resources.requests.cpu | string | `"2"` | |
| resources.requests.memory | string | `"4Gi"` | |
| scrollConfig | string | `"{}\n"` | |
| service.main.enabled | bool | `true` | |
| service.main.labels.app | string | `"rollup-explorer-backend"` | |
| service.main.ports.http.enabled | bool | `true` | |
Expand Down
5 changes: 1 addition & 4 deletions charts/rollup-explorer-backend/templates/config-file.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
{{- if .Values.global.isStandalone }}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: rollup-explorer-backend-config
data:
config.json: |
{{ .Files.Get "configs/rollup-explorer-backend-config.json" | indent 4 }}
---
{{- end }}
{{ .Values.scrollConfig | indent 4 }}
47 changes: 47 additions & 0 deletions charts/rollup-explorer-backend/templates/helpers.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{{/*
Expand the name of the chart.
*/}}
{{- define "scroll-sdk.name" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
{{- end }}
{{/*
Create a default fully qualified app name.
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
If release name contains chart name it will be used as a full name.
*/}}
{{- define "scroll-sdk.fullname" -}}
{{- if .Values.fullnameOverride }}
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- $name := default .Chart.Name .Values.nameOverride }}
{{- if contains $name .Release.Name }}
{{- .Release.Name | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }}
{{- end }}
{{- end }}
{{- end }}
{{/*
Create chart name and build as used by the chart label.
*/}}
{{- define "scroll-sdk.chart" -}}
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
{{- end }}
{{/*
Common labels
*/}}
{{- define "scroll-sdk.labels" -}}
helm.sh/chart: {{ include "scroll-sdk.chart" . }}
{{ include "scroll-sdk.selectorLabels" . }}
{{- if .Chart.AppVersion }}
app.kubernetes.io/build: {{ .Chart.AppVersion | quote }}
{{- end }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- end }}
{{/*
Selector labels
*/}}
{{- define "scroll-sdk.selectorLabels" -}}
app.kubernetes.io/name: {{ include "scroll-sdk.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{- end }}
3 changes: 3 additions & 0 deletions charts/rollup-explorer-backend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,6 @@ serviceMonitor:
- port: metrics
interval: 1m
scrapeTimeout: 10s

scrollConfig: |
{}

0 comments on commit 3bbe54d

Please sign in to comment.