├── .gitignore ├── .helmignore ├── Chart.yaml ├── LICENSE ├── Makefile ├── README.md ├── png └── glif-protofire-logo.png ├── templates ├── _helpers.tpl ├── configmap-lotus.yaml ├── deployment-cache.yaml ├── service-bootstrap.yaml ├── service-cache.yaml ├── service-lotus-dedicated.yaml ├── service-lotus.yaml └── statefulset.yaml ├── values.yaml └── values ├── dev └── network │ ├── api-read-cache-dev.yaml │ └── api-read-dev.yaml └── mainnet └── network ├── api-read-master.yaml ├── api-read-slave-0.yaml ├── api-read-slave-1.yaml ├── api-read-slave-2.yaml ├── calibrationapi-0.yaml ├── calibrationapi-1.yaml ├── calibrationapi-2.yaml ├── calibrationapi-archive-node.yaml ├── fvm-archive.yaml ├── space07.yaml └── thegraph.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | *.local 2 | # package files 3 | *.tgz 4 | .vscode 5 | -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/.helmignore -------------------------------------------------------------------------------- /Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/Chart.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/README.md -------------------------------------------------------------------------------- /png/glif-protofire-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/png/glif-protofire-logo.png -------------------------------------------------------------------------------- /templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/templates/_helpers.tpl -------------------------------------------------------------------------------- /templates/configmap-lotus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/templates/configmap-lotus.yaml -------------------------------------------------------------------------------- /templates/deployment-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/templates/deployment-cache.yaml -------------------------------------------------------------------------------- /templates/service-bootstrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/templates/service-bootstrap.yaml -------------------------------------------------------------------------------- /templates/service-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/templates/service-cache.yaml -------------------------------------------------------------------------------- /templates/service-lotus-dedicated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/templates/service-lotus-dedicated.yaml -------------------------------------------------------------------------------- /templates/service-lotus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/templates/service-lotus.yaml -------------------------------------------------------------------------------- /templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/templates/statefulset.yaml -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/values.yaml -------------------------------------------------------------------------------- /values/dev/network/api-read-cache-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/values/dev/network/api-read-cache-dev.yaml -------------------------------------------------------------------------------- /values/dev/network/api-read-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/values/dev/network/api-read-dev.yaml -------------------------------------------------------------------------------- /values/mainnet/network/api-read-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/values/mainnet/network/api-read-master.yaml -------------------------------------------------------------------------------- /values/mainnet/network/api-read-slave-0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/values/mainnet/network/api-read-slave-0.yaml -------------------------------------------------------------------------------- /values/mainnet/network/api-read-slave-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/values/mainnet/network/api-read-slave-1.yaml -------------------------------------------------------------------------------- /values/mainnet/network/api-read-slave-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/values/mainnet/network/api-read-slave-2.yaml -------------------------------------------------------------------------------- /values/mainnet/network/calibrationapi-0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/values/mainnet/network/calibrationapi-0.yaml -------------------------------------------------------------------------------- /values/mainnet/network/calibrationapi-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/values/mainnet/network/calibrationapi-1.yaml -------------------------------------------------------------------------------- /values/mainnet/network/calibrationapi-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/values/mainnet/network/calibrationapi-2.yaml -------------------------------------------------------------------------------- /values/mainnet/network/calibrationapi-archive-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/values/mainnet/network/calibrationapi-archive-node.yaml -------------------------------------------------------------------------------- /values/mainnet/network/fvm-archive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/values/mainnet/network/fvm-archive.yaml -------------------------------------------------------------------------------- /values/mainnet/network/space07.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/values/mainnet/network/space07.yaml -------------------------------------------------------------------------------- /values/mainnet/network/thegraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glifio/filecoin-chart/HEAD/values/mainnet/network/thegraph.yaml --------------------------------------------------------------------------------