Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update enterprise version difference #170

Merged
merged 5 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions content/installation/basic-vs-enterprise-tier.md

This file was deleted.

25 changes: 23 additions & 2 deletions content/installation/kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,28 @@ Wait for the pods to be up
kubectl get pods -n multi-tenant-operator --watch
```

After all pods come in running state, you can move to next sections on [Licensing](./basic-vs-enterprise-tier.md) and [Tutorials](../tutorials/tenant/create-tenant.md)
After all pods come in running state, you can follow [Tutorials](../tutorials/tenant/create-tenant.md).

### Enterprise License Configuration

For the Enterprise version, you need to have a configmap `license` created in MTO's namespace `multi-tenant-operator`. You will get this configmap when purchasing the Enterprise version. 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 Helm CLI

Expand All @@ -50,6 +71,6 @@ helm uninstall tenant-operator --namespace multi-tenant-operator

## Notes

* For details on licensing of MTO please refer [Basic vs Enterprise Tier](./basic-vs-enterprise-tier.md).
* For details on licensing of MTO please refer [Pricing](../pricing.md).
* For more details on how to use MTO please refer [Tenant tutorial](../tutorials/tenant/create-tenant.md).
* For details on how to extend your MTO manager ClusterRole please refer [extend-default-clusterroles](../how-to-guides/extend-default-roles.md).
2 changes: 1 addition & 1 deletion content/installation/openshift.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,6 @@ You can uninstall MTO by following these steps:

## Notes

* For details on licensing of MTO please refer [Basic vs Enterprise Tier](./basic-vs-enterprise-tier.md).
* For details on licensing of MTO please refer [Pricing](../pricing.md).
* For more details on how to use MTO please refer [Tenant tutorial](../tutorials/tenant/create-tenant.md).
* For details on how to extend your MTO manager ClusterRole please refer [extend-default-clusterroles](../how-to-guides/extend-default-roles.md).
32 changes: 32 additions & 0 deletions content/pricing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Pricing

Multi Tenant Operator (MTO) is available in two versions: _Basic_ and _Enterprise_.

The Basic version is free.

The Enterprise version is priced according to information on the [Multi Tenant Operator website](https://www.stakater.com/mto).

## Feature Difference

The difference between the versions are highlighted here:

| Feature | Basic | Enterprise |
| :- | :-: | :-: |
| Number of possible Tenants | Two (2) | Unlimited |
| Support | Community support through [community Slack](https://stakater-community.slack.com/archives/C07HS5V9P6G) | Stakater dedicated support with Key Account Manager to build strong relationships and strong understanding of your requirements and needs |
| Custom development requests | Not possible | Possible through support requests, which will be prioritized |
| Price | Free | Pricing available on the [Multi Tenant Operator website](https://www.stakater.com/mto) |

## Demo

A web application demo of MTO is available on the [Multi Tenant Operator website](https://www.stakater.com/mto), it showcases MTO Console which is aimed at providing a more intuitive and user-friendly way for administrators and tenant users to manage tenants and their resources.

Contact [`[email protected]`](mailto:[email protected]) to request a custom demo.

## Support

See [Stakater Support](https://support.stakater.com/) for information about support for the Enterprise Version of MTO.

## Contact

For more info, contact [`[email protected]`](mailto:[email protected]).
2 changes: 1 addition & 1 deletion theme_override/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ nav:
- installation/openshift.md
- installation/kubernetes.md
- installation/helm-values.md
- installation/basic-vs-enterprise-tier.md
- Managed Kubernetes:
- installation/managed-kubernetes/overview.md
- installation/managed-kubernetes/azure-aks.md
- installation/managed-kubernetes/aws-eks.md
- pricing.md
- Tutorials:
- Configuring Tenants:
- tutorials/tenant/create-tenant.md
Expand Down
Loading