File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
- dist_url : https://dist.ipfs.io
2
-
3
1
# IPFS
4
2
3
+ # override to disable go-ipfs setup
4
+ ipfs_enable : true
5
+
5
6
ipfs_version : v0.4.19
6
7
ipfs_arch : amd64
7
8
ipfs_home : /home/ipfs
@@ -18,6 +19,9 @@ ipfs_reprovider_strategy: all
18
19
19
20
# IPFS Cluster
20
21
22
+ # override to disable ipfs cluster setup
23
+ ipfs_cluster_enable : true
24
+
21
25
ipfs_cluster_secret : " use `od -vN 32 -An -tx1 /dev/urandom | tr -d ' \n ' ; echo` to generate this"
22
26
ipfs_cluster_arch : amd64
23
27
ipfs_cluster_version : v0.10.0
Original file line number Diff line number Diff line change 1
1
- name : Set up ipfs
2
2
include_tasks : " {{ role_path }}/tasks/ipfs/main.yml"
3
3
tags : ipfs
4
+ when : ipfs_enable | bool
4
5
5
6
- name : Set up ipfs-cluster
6
7
include_tasks : " {{ role_path }}/tasks/ipfs-cluster/main.yml"
7
- tags : ipfs
8
+ tags : ipfs-cluster
9
+ when : ipfs_cluster_enable | bool
Original file line number Diff line number Diff line change
1
+ dist_url : https://dist.ipfs.io
You can’t perform that action at this time.
0 commit comments