Skip to content

Commit 9815892

Browse files
remove mincache and move to amd64, arm64 only RPM/DEB builds
1 parent c9088d3 commit 9815892

File tree

1 file changed

+4
-16
lines changed

1 file changed

+4
-16
lines changed

main.go

+4-16
Original file line numberDiff line numberDiff line change
@@ -115,15 +115,13 @@ type downloadsJSON struct {
115115
}
116116

117117
var rpmArchMap = map[string]string{
118-
"amd64": "x86_64",
119-
"ppc64le": "ppc64le",
120-
"arm64": "aarch64",
118+
"amd64": "x86_64",
119+
"arm64": "aarch64",
121120
}
122121

123122
var debArchMap = map[string]string{
124-
"amd64": "amd64",
125-
"arm64": "arm64",
126-
"ppc64le": "ppc64el",
123+
"amd64": "amd64",
124+
"arm64": "arm64",
127125
}
128126

129127
func generateEnterpriseDownloadsJSON(semVerTag string) enterpriseDownloadsJSON {
@@ -146,7 +144,6 @@ func generateEnterpriseDownloadsJSON(semVerTag string) enterpriseDownloadsJSON {
146144
d.Subscriptions[subscription].Linux["MinIO KMS"] = map[string]downloadJSON{}
147145
d.Subscriptions[subscription].Linux["MinIO Catalog"] = map[string]downloadJSON{}
148146
d.Subscriptions[subscription].Linux["MinIO Firewall"] = map[string]downloadJSON{}
149-
d.Subscriptions[subscription].Linux["MinIO Cache"] = map[string]downloadJSON{}
150147
d.Subscriptions[subscription].Kubernetes["MinIO Enterprise Object Store"] = map[string]downloadJSON{}
151148
}
152149

@@ -173,15 +170,6 @@ PS> C:\minio.exe server F:\Data --console-address ":9001"`, arch),
173170
tar xvf console.tar.gz
174171
kubectl apply -k console`,
175172
}
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-
}
185173
d.Subscriptions[subscription].Linux["MinIO Firewall"][arch] = downloadJSON{
186174
Bin: &dlInfo{
187175
Download: fmt.Sprintf("https://dl.min.io/enterprise/minwall/release/linux-%s/minwall", arch),

0 commit comments

Comments
 (0)