Skip to content

Commit

Permalink
Merge pull request #23 from hazelcast-guides/CN-1287
Browse files Browse the repository at this point in the history
  • Loading branch information
kutluhanmetin authored Jul 2, 2024
2 parents f37957d + 12999fd commit 51c5d0a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ kind: Hazelcast
metadata:
name: my-hazelcast-unisocket
spec:
licenseKeySecretName: hazelcast-license-key
exposeExternally:
type: Unisocket
discoveryServiceType: LoadBalancer
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ kind: Hazelcast
metadata:
name: my-hazelcast
spec:
licenseKeySecretName: hazelcast-license-key
exposeExternally:
type: Smart
discoveryServiceType: LoadBalancer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@
* Up and running https://kubernetes.io/[Kubernetes] cluster
* Kubernetes command-line tool, https://kubernetes.io/docs/tasks/tools/#kubectl[kubectl]
* Deployed xref:operator:ROOT:get-started.adoc[Hazelcast Platform Operator]
* Create a license secret:
+
Create a secret with your link:http://trialrequest.hazelcast.com/[Hazelcast Enterprise License].

+
[source, shell]
----
kubectl create secret generic hazelcast-license-key --from-literal=license-key=<hz-license-key>
----

NOTE: Starting with version 5.13, Hazelcast Platform Operator only supports Hazelcast Enterprise cluster creation. Even the feature can be used in Hazelcast Open Source clusters, Hazelcast Platform Operator requires license key to run a cluster.

WARNING: This tutorial uses LoadBalancer services to connect to Hazelcast from outside of the Kubernetes cluster. Therefore, it is essential to ensure that your Kubernetes cluster can assign public IPs to LoadBalancer services. This is particularly important if you are using a local Kubernetes cluster such as Minikube or Kind.

Expand Down

0 comments on commit 51c5d0a

Please sign in to comment.