File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 1.2.4
18
+ version : 1.2.5
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
22
22
# follow Semantic Versioning. They should reflect the version the application is using.
23
23
# It is recommended to use it with quotes.
24
24
# renovate: image=0xpolygon/heimdall
25
- appVersion : " 1.0.10 "
25
+ appVersion : " 1.2.0 "
Original file line number Diff line number Diff line change 2
2
3
3
Deploy and scale [ Heimdall] ( https://github.com/maticnetwork/heimdall ) inside Kubernetes with ease
4
4
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 )
6
6
7
7
## Features
8
8
Original file line number Diff line number Diff line change 98
98
{{- if and $values.config.fromSnapshot.enabled $values.config.fromSnapshot.snapshotUrl }}
99
99
- name : {{ $componentName }}-init-snapshot
100
100
# # 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
102
102
command :
103
103
- sh
104
104
- -c
@@ -108,10 +108,12 @@ spec:
108
108
# If enabled and snapshot URL has been provided, bootstrap snapshot
109
109
if [ ! -f "$HEIMDALLD_HOME/from_snapshot" ] || [ "$(cat $HEIMDALLD_HOME/from_snapshot)" != "${SNAPSHOT_URL}" ]; then
110
110
mkdir -p ${HEIMDALLD_HOME}/data
111
+ cd ${HEIMDALLD_HOME}
111
112
wget -c "${SNAPSHOT_URL}" -O snapshot.tar.lz4 || { echo "Download failed. Exiting."; exit 1; }
112
113
lz4 -d snapshot.tar.lz4 snapshot.tar || { echo "Decompression failed. Exiting."; exit 1; }
113
114
tar -xvf snapshot.tar -C ${HEIMDALLD_HOME}/data || { echo "Extraction failed. Exiting."; exit 1; }
114
115
echo "${SNAPSHOT_URL}" > ${HEIMDALLD_HOME}/from_snapshot
116
+ rm snapshot.tar snapshot.tar.lz4
115
117
fi
116
118
volumeMounts :
117
119
- name : storage
You can’t perform that action at this time.
0 commit comments