@@ -115,15 +115,13 @@ type downloadsJSON struct {
115
115
}
116
116
117
117
var rpmArchMap = map [string ]string {
118
- "amd64" : "x86_64" ,
119
- "ppc64le" : "ppc64le" ,
120
- "arm64" : "aarch64" ,
118
+ "amd64" : "x86_64" ,
119
+ "arm64" : "aarch64" ,
121
120
}
122
121
123
122
var debArchMap = map [string ]string {
124
- "amd64" : "amd64" ,
125
- "arm64" : "arm64" ,
126
- "ppc64le" : "ppc64el" ,
123
+ "amd64" : "amd64" ,
124
+ "arm64" : "arm64" ,
127
125
}
128
126
129
127
func generateEnterpriseDownloadsJSON (semVerTag string ) enterpriseDownloadsJSON {
@@ -146,7 +144,6 @@ func generateEnterpriseDownloadsJSON(semVerTag string) enterpriseDownloadsJSON {
146
144
d .Subscriptions [subscription ].Linux ["MinIO KMS" ] = map [string ]downloadJSON {}
147
145
d .Subscriptions [subscription ].Linux ["MinIO Catalog" ] = map [string ]downloadJSON {}
148
146
d .Subscriptions [subscription ].Linux ["MinIO Firewall" ] = map [string ]downloadJSON {}
149
- d .Subscriptions [subscription ].Linux ["MinIO Cache" ] = map [string ]downloadJSON {}
150
147
d .Subscriptions [subscription ].Kubernetes ["MinIO Enterprise Object Store" ] = map [string ]downloadJSON {}
151
148
}
152
149
@@ -173,15 +170,6 @@ PS> C:\minio.exe server F:\Data --console-address ":9001"`, arch),
173
170
tar xvf console.tar.gz
174
171
kubectl apply -k console` ,
175
172
}
176
- d .Subscriptions [subscription ].Linux ["MinIO Cache" ][arch ] = downloadJSON {
177
- Bin : & dlInfo {
178
- Download : fmt .Sprintf ("https://dl.min.io/enterprise/mincache/release/linux-%s/mincache" , arch ),
179
- Text : fmt .Sprintf (`wget https://dl.min.io/enterprise/mincache/release/linux-%s/mincache
180
- chmod +x mincache
181
- ./mincache serve --config config.yaml` , arch ),
182
- Checksum : fmt .Sprintf ("https://dl.min.io/enterprise/mincache/release/linux-%s/mincache.sha256sum" , arch ),
183
- },
184
- }
185
173
d .Subscriptions [subscription ].Linux ["MinIO Firewall" ][arch ] = downloadJSON {
186
174
Bin : & dlInfo {
187
175
Download : fmt .Sprintf ("https://dl.min.io/enterprise/minwall/release/linux-%s/minwall" , arch ),
0 commit comments