-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Custom Pricing Model (for Opencost by MTO)
- Loading branch information
1 parent
74741bf
commit df45eab
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ This document contains instructions on installing, uninstalling and configuring | |
|
||
1. [Enabling Console](#enabling-console) | ||
|
||
1. [License configuration](#license-configuration) | ||
|
||
1. [Uninstall](#uninstall-via-operatorhub-ui) | ||
|
||
## Requirements | ||
|
@@ -139,6 +141,29 @@ spec: | |
|
||
* Now the `InstallPlan` will be approved, and MTO console components will be installed. | ||
|
||
## License Configuration | ||
|
||
We offer a free license with installation and you can create max 2 [Tenants](../tutorials/tenant/create-tenant.md) with it. | ||
|
||
We offer a paid license as well. You need to have a configmap `license` created in MTO's namespace (multi-tenant-operator). To get this configmap, you can contact [`[email protected]`](mailto:[email protected]). It would look like this: | ||
|
||
```yaml | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: license | ||
namespace: multi-tenant-operator | ||
data: | ||
payload.json: | | ||
{ | ||
"metaData": { | ||
"tier" : "paid", | ||
"company": "<company name here>" | ||
} | ||
} | ||
signature.base64.txt: <base64 signature here.> | ||
``` | ||
|
||
## Uninstall via OperatorHub UI | ||
|
||
You can uninstall MTO by following these steps: | ||
|