Skip to content

Commit

Permalink
enterprise operator, console instructions updated
Browse files Browse the repository at this point in the history
  • Loading branch information
harshavardhana committed Mar 12, 2024
1 parent b4d181e commit cb71331
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,9 @@ func generateEnterpriseDownloadsJSON(semVerTag string) enterpriseDownloadsJSON {
} {
if subscription == "Standard" || subscription == "Enterprise" {
d.Subscriptions[subscription].Kubernetes["MinIO Object Store"][arch] = downloadJSON{
Text: `kubectl apply -f dl.min.io/enterprise/operator`,
Text: `wget https://dl.min.io/enterprise/operator.tar.gz
tar xvf operator.tar.gz
kubectl apply -k operator`,
}
if arch == "amd64" {
d.Subscriptions[subscription].Windows["MinIO Object Store"][arch] = downloadJSON{
Expand All @@ -187,7 +189,9 @@ PS> C:\minio.exe server F:\Data --console-address ":9001"`, arch),
}
} else {
d.Subscriptions[subscription].Kubernetes["MinIO Object Store"][arch] = downloadJSON{
Text: `kubectl apply -f dl.min.io/enterprise/console`,
Text: `wget https://dl.min.io/enterprise/console.tar.gz
tar xvf console.tar.gz
kubectl apply -k console`,
}
d.Subscriptions[subscription].Linux["MinIO Cache"][arch] = downloadJSON{
Bin: &dlInfo{
Expand Down

0 comments on commit cb71331

Please sign in to comment.