Skip to content

Commit

Permalink
fix: renaming standaloneDeployment variable to be consistent
Browse files Browse the repository at this point in the history
Signed-off-by: Nuno Martins <nunojdcm@gmail.com>
  • Loading branch information
Spin committed Apr 5, 2024
1 parent 452538a commit 1bf1bc4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/flyte-core/templates/admin/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ spec:
{{- end }}
{{- end }}
{{- end }}
{{- if and (.Values.cluster_resource_manager.enabled) (not .Values.cluster_resource_manager.standalone_deploy) }}
{{- if and (.Values.cluster_resource_manager.enabled) (not .Values.cluster_resource_manager.standaloneDeployment) }}
- command:
- flyteadmin
- --config
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if .Values.cluster_resource_manager.enabled }}
{{- if and (.Values.cluster_resource_manager.enabled) (.Values.cluster_resource_manager.standaloneDeployment) }}
apiVersion: apps/v1
kind: Deployment
metadata:
Expand Down
2 changes: 1 addition & 1 deletion charts/flyte-core/values-eks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ cluster_resource_manager:
# -- Enables the Cluster resource manager component
enabled: true
# -- Starts the cluster resource manager in standalone mode with requisite auth credentials to call flyteadmin service endpoints
standalone_deploy: false
standaloneDeployment: false
config:
cluster_resources:
customData:
Expand Down
2 changes: 1 addition & 1 deletion charts/flyte-core/values-gcp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ cluster_resource_manager:
# -- Enables the Cluster resource manager component
enabled: true
# -- Starts the cluster resource manager in standalone mode with requisite auth credentials to call flyteadmin service endpoints
standalone_deploy: false
standaloneDeployment: false
config:
cluster_resources:
customData:
Expand Down
4 changes: 2 additions & 2 deletions docs/deployment/plugins/k8s/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ Specify plugin configuration
spark: spark
cluster_resource_manager:
enabled: true
standalone_deploy: false
standaloneDeployment: false
# -- Resource templates that should be applied
templates:
# -- Template for namespaces resources
Expand Down Expand Up @@ -735,7 +735,7 @@ Specify plugin configuration
spark: spark
cluster_resource_manager:
enabled: true
standalone_deploy: false
standaloneDeployment: false
config:
cluster_resources:
customData:
Expand Down

0 comments on commit 1bf1bc4

Please sign in to comment.