-
Notifications
You must be signed in to change notification settings - Fork 13
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
Add Flow CR documentation #252
Changes from 1 commit
2f90c14
8e48af2
49270fe
65516d5
687fb66
fc1cc0b
0ad40e5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
apiVersion: hazelcast.com/v1alpha1 | ||
kind: Flow | ||
metadata: | ||
labels: | ||
app.kubernetes.io/name: hazelcast-platform-operator | ||
name: flow | ||
spec: | ||
size: 3 | ||
licenseKeySecretName: hazelcast-license-key | ||
externalConnectivity: | ||
ingress: | ||
hostname: "" | ||
ingressClassName: nginx | ||
path: "/" | ||
annotations: | ||
kubernetes.io/ingress.class: "nginx" | ||
nginx.ingress.kubernetes.io/ssl-redirect: "false" | ||
nginx.ingress.kubernetes.io/enable-opentelemetry: "true" | ||
database: | ||
host: "flow-database" | ||
secretName: flow-db-secret | ||
env: | ||
- name: OPTIONS | ||
value: | | ||
--flow.analytics.persistRemoteCallResponses=true | ||
--flow.stream-server.enabled=false | ||
--flow.analytics.persistResults=false | ||
--flow.toggles.dashboard-enabled=true | ||
--flow.config.custom.managementCenterUrl=http://233.252.0.158/mc |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
= Deploy Flow | ||
|
||
:description: In this tutorial, you'll deploy a Flow application using Hazelcast Platform Operator for Kubernetes. | ||
|
||
{description} | ||
|
||
== Prerequisites | ||
|
||
- Flow requires the Management Center application to run and be configured properly. The Management Center application should be configured to use FLow. | ||
|
||
[source,yaml] | ||
---- | ||
... | ||
hazelcastClusters: | ||
- address: flow <1> | ||
name: flow <2> | ||
jvm: | ||
args: | ||
- "-Dhazelcast.mc.flow.addresses=http://233.252.0.158/" <3> | ||
- "-Dhazelcast.mc.internal.flowAddresses=http://flow:9021" <4> | ||
... | ||
---- | ||
|
||
<1> The service name of the Flow application. The same as the Flow CR name. | ||
SeriyBg marked this conversation as resolved.
Show resolved
Hide resolved
|
||
<2> Hazelcast cluster name. Should always be `flow`. | ||
<3> Flow Ingress public address. | ||
<4> The internal address of Flow in the format of `http://<service-name>:9021`. The service name is the same as the Flow CR name. | ||
|
||
- To connect to the database you need create a `Secret` with the DB credentials: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The DB have to be Postgre so we should mention in here or at the beginning of the section. WDYT? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I thought we didn't mention it on purpose, don't we? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why? If flow mentioned about it we can give reference to it also There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
|
||
[source,shell] | ||
---- | ||
kubectl create secret generic flow-db-secret \ | ||
--from-literal=database=flow \ | ||
--from-literal=username=flow \ | ||
--from-literal=password="strong-password" | ||
---- | ||
|
||
In the created secret `username` and `password` are required, whereas `database` field is optional and will default to `flow` if not provided. | ||
|
||
== Run Flow | ||
|
||
To run Flow on Kubernetes using Hazelcast Platform Operator you need to create a Flow CR. | ||
|
||
[source,yaml,subs="attributes+"] | ||
---- | ||
include::ROOT:example$/flow.yaml[] | ||
---- | ||
|
||
Additional flow configuration can be accheived by providing additional parameters via `OPTIONS` environment variable. | ||
SeriyBg marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
NOTE: Parameters managed by the Hazelcat Platform Operator are not allowed in the `OPTIONS`. E.g., the Database configuration can only be done via `spec.database` in the Flow CR. | ||
SeriyBg marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
=== Configure OpenID support | ||
|
||
You can enable OpenID support with Management Center deployment on Flow. In order to configure OpenID, you need to provide the required parameters to the `OPTIONS` environment variable: | ||
SeriyBg marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
[source,yaml] | ||
---- | ||
... | ||
- name: OPTIONS | ||
value: | | ||
--flow.security.openIdp.enabled=true | ||
--flow.security.openIdp.jwks-uri=http://233.252.0.158/mc/oauth2/jwks | ||
--flow.security.openIdp.issuerUrl=http://233.252.0.158/mc | ||
--flow.security.openIdp.clientId=flow-client | ||
--flow.security.openIdp.require-https=false | ||
--flow.security.open-idp.roles.format=path | ||
--flow.security.open-idp.roles.path=roles | ||
--flow.security.open-idp.refreshTokensDisabled=true | ||
... | ||
---- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please mention FLOW MC image should be used here -->
docker.io/hazelcast/management-center-flow
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have added it to the example config with the following description