|
12 | 12 | disable_list: true |
13 | 13 | --- |
14 | 14 |
|
15 | | -{{< annotation type="Disambiguation" >}} |
16 | | - |
17 | | -This page is for upgrading from v25.2.13 or later. For upgrading |
18 | | -from v25.2.12 or earlier, see [Upgrade from v25.2.12 or earlier](/installation/install-on-local-kind/upgrade-to-swap/). |
19 | | - |
20 | | -{{< /annotation >}} |
21 | | - |
22 | 15 | {{% self-managed/materialize-components-sentence %}} |
23 | 16 |
|
24 | 17 | The following tutorial uses a local [`kind`](https://kind.sigs.k8s.io/) cluster |
@@ -69,7 +62,9 @@ reference](https://kubernetes.io/docs/reference/kubectl/quick-reference/). |
69 | 62 |
|
70 | 63 | ### License key |
71 | 64 |
|
72 | | -{{< include-md file="shared-content/license-key-required.md" >}} |
| 65 | +Starting in v26.0, Self-Managed Materialize requires a license key. |
| 66 | + |
| 67 | +{{< yaml-table data="self_managed/license_key" >}} |
73 | 68 |
|
74 | 69 | ## Installation |
75 | 70 |
|
@@ -116,7 +111,28 @@ reference](https://kubernetes.io/docs/reference/kubectl/quick-reference/). |
116 | 111 |
|
117 | 112 | {{% self-managed/versions/curl-sample-files-local-install %}} |
118 | 113 |
|
119 | | -1. Edit `sample-materialize.yaml` to add your license key to the `license_key` field in the backend secret. |
| 114 | +1. Add your license key: |
| 115 | + |
| 116 | + a. To get your license key: |
| 117 | + |
| 118 | + {{% yaml-table data="self_managed/license_key" %}} |
| 119 | + |
| 120 | + b. Edit `sample-materialize.yaml` to add your license key to the |
| 121 | + `license_key` field in the backend secret. |
| 122 | + |
| 123 | + ```yaml {hl_lines="10"} |
| 124 | + --- |
| 125 | + apiVersion: v1 |
| 126 | + kind: Secret |
| 127 | + metadata: |
| 128 | + name: materialize-backend |
| 129 | + namespace: materialize-environment |
| 130 | + stringData: |
| 131 | + metadata_backend_url: "postgres://materialize_user:materialize_pass@postgres.materialize.svc.cluster.local:5432/materialize_db?sslmode=disable" |
| 132 | + persist_backend_url: "s3://minio:minio123@bucket/12345678-1234-1234-1234-123456789012?endpoint=http%3A%2F%2Fminio.materialize.svc.cluster.local%3A9000®ion=minio" |
| 133 | + license_key: "<enter your license key here>" |
| 134 | + --- |
| 135 | + ``` |
120 | 136 |
|
121 | 137 | 1. Install the Materialize Helm chart. |
122 | 138 |
|
|
0 commit comments