Skip to content

Commit 557e0a2

Browse files
feat(deps): update heimdall dependencies (#467)
| datasource | package | from | to | | ---------- | ------------------ | ------ | ----- | | docker | 0xpolygon/heimdall | 1.0.10 | 1.2.0 | --------- Co-authored-by: graphops-renovate[bot] <135047802+graphops-renovate[bot]@users.noreply.github.com> Co-authored-by: Carlos Jorge <carlos@graphops.xyz>
1 parent 9bf0266 commit 557e0a2

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

charts/heimdall/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.2.4
18+
version: 1.2.5
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
2424
# renovate: image=0xpolygon/heimdall
25-
appVersion: "1.0.10"
25+
appVersion: "1.2.0"

charts/heimdall/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Deploy and scale [Heimdall](https://github.com/maticnetwork/heimdall) inside Kubernetes with ease
44

5-
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 1.2.4](https://img.shields.io/badge/Version-1.2.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.10](https://img.shields.io/badge/AppVersion-1.0.10-informational?style=flat-square)
5+
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Version: 1.2.5](https://img.shields.io/badge/Version-1.2.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.2.0](https://img.shields.io/badge/AppVersion-1.2.0-informational?style=flat-square)
66

77
## Features
88

charts/heimdall/templates/heimdall/statefulset.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ spec:
9898
{{- if and $values.config.fromSnapshot.enabled $values.config.fromSnapshot.snapshotUrl }}
9999
- name: {{ $componentName }}-init-snapshot
100100
## TODO: update tag
101-
image: ghcr.io/graphops/docker-builds/init-stream-download@sha256:acbe5bff3b273b6e56b7aad20e8368ab9ddb091250b744e41ad66d6e7c2d0901
101+
image: ghcr.io/graphops/docker-builds/init-stream-download:main
102102
command:
103103
- sh
104104
- -c
@@ -108,10 +108,12 @@ spec:
108108
# If enabled and snapshot URL has been provided, bootstrap snapshot
109109
if [ ! -f "$HEIMDALLD_HOME/from_snapshot" ] || [ "$(cat $HEIMDALLD_HOME/from_snapshot)" != "${SNAPSHOT_URL}" ]; then
110110
mkdir -p ${HEIMDALLD_HOME}/data
111+
cd ${HEIMDALLD_HOME}
111112
wget -c "${SNAPSHOT_URL}" -O snapshot.tar.lz4 || { echo "Download failed. Exiting."; exit 1; }
112113
lz4 -d snapshot.tar.lz4 snapshot.tar || { echo "Decompression failed. Exiting."; exit 1; }
113114
tar -xvf snapshot.tar -C ${HEIMDALLD_HOME}/data || { echo "Extraction failed. Exiting."; exit 1; }
114115
echo "${SNAPSHOT_URL}" > ${HEIMDALLD_HOME}/from_snapshot
116+
rm snapshot.tar snapshot.tar.lz4
115117
fi
116118
volumeMounts:
117119
- name: storage

0 commit comments

Comments
 (0)