@@ -132,16 +132,6 @@ func generateEnterpriseDownloadsJSON(semVerTag string) enterpriseDownloadsJSON {
132
132
d := enterpriseDownloadsJSON {
133
133
Subscriptions : map [string ]downloadsJSON {},
134
134
}
135
- d .Subscriptions ["Standard" ] = downloadsJSON {
136
- Kubernetes : make (map [string ]map [string ]downloadJSON ),
137
- Linux : make (map [string ]map [string ]downloadJSON ),
138
- Windows : make (map [string ]map [string ]downloadJSON ),
139
- }
140
- d .Subscriptions ["Enterprise" ] = downloadsJSON {
141
- Kubernetes : make (map [string ]map [string ]downloadJSON ),
142
- Linux : make (map [string ]map [string ]downloadJSON ),
143
- Windows : make (map [string ]map [string ]downloadJSON ),
144
- }
145
135
d .Subscriptions ["Enterprise-Lite" ] = downloadsJSON {
146
136
Kubernetes : make (map [string ]map [string ]downloadJSON ),
147
137
Linux : make (map [string ]map [string ]downloadJSON ),
@@ -155,15 +145,11 @@ func generateEnterpriseDownloadsJSON(semVerTag string) enterpriseDownloadsJSON {
155
145
for subscription := range d .Subscriptions {
156
146
d .Subscriptions [subscription ].Linux ["MinIO Object Store" ] = map [string ]downloadJSON {}
157
147
d .Subscriptions [subscription ].Windows ["MinIO Object Store" ] = map [string ]downloadJSON {}
158
- if subscription == "Enterprise-Lite" || subscription == "Enterprise-Plus" {
159
- d .Subscriptions [subscription ].Linux ["MinIO KMS" ] = map [string ]downloadJSON {}
160
- d .Subscriptions [subscription ].Linux ["MinIO Catalog" ] = map [string ]downloadJSON {}
161
- d .Subscriptions [subscription ].Linux ["MinIO Firewall" ] = map [string ]downloadJSON {}
162
- d .Subscriptions [subscription ].Linux ["MinIO Cache" ] = map [string ]downloadJSON {}
163
- d .Subscriptions [subscription ].Kubernetes ["MinIO Enterprise Object Store" ] = map [string ]downloadJSON {}
164
- } else {
165
- d .Subscriptions [subscription ].Kubernetes ["MinIO Object Store" ] = map [string ]downloadJSON {}
166
- }
148
+ d .Subscriptions [subscription ].Linux ["MinIO KMS" ] = map [string ]downloadJSON {}
149
+ d .Subscriptions [subscription ].Linux ["MinIO Catalog" ] = map [string ]downloadJSON {}
150
+ d .Subscriptions [subscription ].Linux ["MinIO Firewall" ] = map [string ]downloadJSON {}
151
+ d .Subscriptions [subscription ].Linux ["MinIO Cache" ] = map [string ]downloadJSON {}
152
+ d .Subscriptions [subscription ].Kubernetes ["MinIO Enterprise Object Store" ] = map [string ]downloadJSON {}
167
153
}
168
154
169
155
for subscription := range d .Subscriptions {
@@ -183,55 +169,49 @@ PS> C:\minio.exe server F:\Data --console-address ":9001"`, arch),
183
169
},
184
170
}
185
171
}
186
- if subscription == "Standard" || subscription == "Enterprise" {
187
- d .Subscriptions [subscription ].Kubernetes ["MinIO Object Store" ][arch ] = downloadJSON {
188
- Text : `wget https://dl.min.io/enterprise/operator.tar.gz
189
- tar xvf operator.tar.gz
190
- kubectl apply -k operator` ,
191
- }
192
- } else {
193
- d .Subscriptions [subscription ].Kubernetes ["MinIO Enterprise Object Store" ][arch ] = downloadJSON {
194
- Text : `wget https://dl.min.io/enterprise/console.tar.gz
172
+
173
+ d .Subscriptions [subscription ].Kubernetes ["MinIO Enterprise Object Store" ][arch ] = downloadJSON {
174
+ Text : `wget https://dl.min.io/enterprise/console.tar.gz
195
175
tar xvf console.tar.gz
196
176
kubectl apply -k console` ,
197
- }
198
- d .Subscriptions [subscription ].Linux ["MinIO Cache" ][arch ] = downloadJSON {
199
- Bin : & dlInfo {
200
- Download : fmt .Sprintf ("https://dl.min.io/enterprise/mincache/release/linux-%s/mincache" , arch ),
201
- Text : fmt .Sprintf (`wget https://dl.min.io/enterprise/mincache/release/linux-%s/mincache
177
+ }
178
+ d .Subscriptions [subscription ].Linux ["MinIO Cache" ][arch ] = downloadJSON {
179
+ Bin : & dlInfo {
180
+ Download : fmt .Sprintf ("https://dl.min.io/enterprise/mincache/release/linux-%s/mincache" , arch ),
181
+ Text : fmt .Sprintf (`wget https://dl.min.io/enterprise/mincache/release/linux-%s/mincache
202
182
chmod +x mincache
203
183
./mincache serve --config config.yaml` , arch ),
204
- Checksum : fmt .Sprintf ("https://dl.min.io/enterprise/mincache/release/linux-%s/mincache.sha256sum" , arch ),
205
- },
206
- }
207
- d .Subscriptions [subscription ].Linux ["MinIO Firewall" ][arch ] = downloadJSON {
208
- Bin : & dlInfo {
209
- Download : fmt .Sprintf ("https://dl.min.io/enterprise/minwall/release/linux-%s/minwall" , arch ),
210
- Text : fmt .Sprintf (`wget https://dl.min.io/enterprise/minwall/release/linux-%s/minwall
184
+ Checksum : fmt .Sprintf ("https://dl.min.io/enterprise/mincache/release/linux-%s/mincache.sha256sum" , arch ),
185
+ },
186
+ }
187
+ d .Subscriptions [subscription ].Linux ["MinIO Firewall" ][arch ] = downloadJSON {
188
+ Bin : & dlInfo {
189
+ Download : fmt .Sprintf ("https://dl.min.io/enterprise/minwall/release/linux-%s/minwall" , arch ),
190
+ Text : fmt .Sprintf (`wget https://dl.min.io/enterprise/minwall/release/linux-%s/minwall
211
191
chmod +x minwall
212
192
./minwall -c config.yaml` , arch ),
213
- Checksum : fmt .Sprintf ("https://dl.min.io/enterprise/minwall/release/linux-%s/minwall.sha256sum" , arch ),
214
- },
215
- }
216
- d .Subscriptions [subscription ].Linux ["MinIO KMS" ][arch ] = downloadJSON {
217
- Bin : & dlInfo {
218
- Download : fmt .Sprintf ("https://dl.min.io/enterprise/minkms/release/linux-%s/minkms" , arch ),
219
- Text : fmt .Sprintf (`wget https://dl.min.io/enterprise/minkms/release/linux-%s/minkms
193
+ Checksum : fmt .Sprintf ("https://dl.min.io/enterprise/minwall/release/linux-%s/minwall.sha256sum" , arch ),
194
+ },
195
+ }
196
+ d .Subscriptions [subscription ].Linux ["MinIO KMS" ][arch ] = downloadJSON {
197
+ Bin : & dlInfo {
198
+ Download : fmt .Sprintf ("https://dl.min.io/enterprise/minkms/release/linux-%s/minkms" , arch ),
199
+ Text : fmt .Sprintf (`wget https://dl.min.io/enterprise/minkms/release/linux-%s/minkms
220
200
chmod +x minkms
221
201
./minkms --help` , arch ),
222
- Checksum : fmt .Sprintf ("https://dl.min.io/enterprise/minkms/release/linux-%s/minkms.sha256sum" , arch ),
223
- },
224
- }
225
- d .Subscriptions [subscription ].Linux ["MinIO Catalog" ][arch ] = downloadJSON {
226
- Bin : & dlInfo {
227
- Download : fmt .Sprintf ("https://dl.min.io/enterprise/mincat/release/linux-%s/mincat" , arch ),
228
- Text : fmt .Sprintf (`wget https://dl.min.io/enterprise/mincat/release/linux-%s/mincat
202
+ Checksum : fmt .Sprintf ("https://dl.min.io/enterprise/minkms/release/linux-%s/minkms.sha256sum" , arch ),
203
+ },
204
+ }
205
+ d .Subscriptions [subscription ].Linux ["MinIO Catalog" ][arch ] = downloadJSON {
206
+ Bin : & dlInfo {
207
+ Download : fmt .Sprintf ("https://dl.min.io/enterprise/mincat/release/linux-%s/mincat" , arch ),
208
+ Text : fmt .Sprintf (`wget https://dl.min.io/enterprise/mincat/release/linux-%s/mincat
229
209
chmod +x mincat
230
210
./mincat --help` , arch ),
231
- Checksum : fmt .Sprintf ("https://dl.min.io/enterprise/mincat/release/linux-%s/mincat.sha256sum" , arch ),
232
- },
233
- }
211
+ Checksum : fmt .Sprintf ("https://dl.min.io/enterprise/mincat/release/linux-%s/mincat.sha256sum" , arch ),
212
+ },
234
213
}
214
+
235
215
d .Subscriptions [subscription ].Linux ["MinIO Object Store" ][arch ] = downloadJSON {
236
216
Bin : & dlInfo {
237
217
Download : fmt .Sprintf ("https://dl.min.io/enterprise/minio/release/linux-%s/minio" , arch ),
0 commit comments