https://github.com/web3-storage/consul-cluster-go-ipfs
https://github.com/web3-storage/consul-cluster-go-ipfs
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/web3-storage/consul-cluster-go-ipfs
- Owner: web3-storage
- Archived: true
- Created: 2022-02-11T04:16:05.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-14T02:50:15.000Z (over 4 years ago)
- Last Synced: 2025-02-24T00:28:03.951Z (over 1 year ago)
- Language: HCL
- Size: 106 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# consul-cluster-go-ipfs
🚧 WIP 🚧
## packer
Packer configuration to build AMIs and register with HCP. To build packer images:
```
# export HCP config for your session
export HCP_CLIENT_ID=
export HCP_CLIENT_SECRET=
cd packer
# init packer plugins and lint template
make init
# build AMI images and register with HCP
make build
```
## terraform
### test-node
Barebones test instance to validate packer images. To deploy test-node:
```
# export HCP config for your session
export HCP_CLIENT_ID=
export HCP_CLIENT_SECRET=
cd terraform/test-node
# init terraform plugins and modules
make init
# deploy test-node instance
make build
```
### ipfs-node
Preconfigured ipfs-node. To deploy ipfs-node:
```
# export HCP config for your session
export HCP_CLIENT_ID=
export HCP_CLIENT_SECRET=
cd terraform/ipfs-node
# init terraform plugins and modules
make init
# deploy ipfs-node instance
make build
```