Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,8 @@ Learn how to deploy Geospatial Consumption Zone (GCZ) on Azure Kubernetes Servic
1. Deploy the GCZ HELM chart:

```bash
helm upgrade -i $CHART . -n $NAMESPACE -f osdu_gcz_custom_values.yaml --set-file global.provider.configLoaderJs="../../../../gcz-provider/gcz-provider-core/config/configLoader.js"
helm upgrade -i "$RELEASE_CHART_NAME" . -n "$NAMESPACE" -f osdu_gcz_custom_values.yaml \
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

RELEASE_CHART_NAME is undefined.

The community version is different:
image

Copy link

Copilot AI Oct 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The variable $RELEASE_CHART_NAME is introduced in this command but was not used previously (the original command used $CHART). This documentation should either define $RELEASE_CHART_NAME before this step or continue using $CHART for consistency with the variable that was presumably defined earlier in the documentation.

Suggested change
helm upgrade -i "$RELEASE_CHART_NAME" . -n "$NAMESPACE" -f osdu_gcz_custom_values.yaml \
helm upgrade -i "$CHART" . -n "$NAMESPACE" -f osdu_gcz_custom_values.yaml \

Copilot uses AI. Check for mistakes.
--set-file global.provider.configLoaderJs="../../../../gcz-provider/gcz-provider-core/config/configLoader.js"
```

1. Verify the deployment:
Expand Down