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

Adds missing KUBERNETES_CLUSTER_DOMAIN environment variable to docs #709

Merged
merged 1 commit into from
Nov 14, 2024
Merged
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
35 changes: 33 additions & 2 deletions docs/modules/nifi/pages/reference/environment-variables.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,44 @@

This operator accepts the following environment variables:

== KUBERNETES_CLUSTER_DOMAIN

*Default value*: cluster.local

*Required*: false

*Multiple values*: false

This instructs the operator, which value it should use for the Kubernetes `clusterDomain` setting.
Make sure to keep this in sync with whatever setting your cluster uses.
Please see the documentation xref:guides:kubernetes-cluster-domain.adoc[on configuring the Kubernetes cluster domain] for more information on this feature.

[source]
----
export KUBERNETES_CLUSTER_DOMAIN=mycluster.local
cargo run -- run
----

or via docker:

[source]
----
docker run \
--name nifi-operator \
--network host \
--env KUBECONFIG=/home/stackable/.kube/config \
--env KUBERNETES_CLUSTER_DOMAIN=mycluster.local \
--mount type=bind,source="$HOME/.kube/config",target="/home/stackable/.kube/config" \
docker.stackable.tech/stackable/nifi-operator:latest
----

== PRODUCT_CONFIG

*Default value*: `/etc/stackable/nifi-operator/config-spec/properties.yaml`

*Required*: false

*Multiple values:* false
*Multiple values*: false

[source]
----
Expand All @@ -34,7 +65,7 @@ docker run \

*Required*: false

*Multiple values:* false
*Multiple values*: false

The operator **only** watches for resources in the provided namespace `test`:

Expand Down
Loading