Skip to content

Commit 6bce552

Browse files
Merge pull request #172 from nrwl/release/1.0.1
nx-cloud 1.0.1 release
2 parents a5d46a4 + af01697 commit 6bce552

File tree

6 files changed

+38
-15
lines changed

6 files changed

+38
-15
lines changed

.github/workflows/release_charts.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
uses: azure/setup-helm@v3
2929

3030
- name: Run chart-releaser
31-
uses: helm/chart-releaser-action@v1.5.0
31+
uses: helm/chart-releaser-action@v1.7.0
32+
with:
33+
skip_existing: true
3234
env:
3335
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ This repo contains:
77
* Nx Cloud Helm Chart
88
* Nx Agents Helm Chart
99

10+
> Important: Breaking changes in nx-cloud chart version 1.0.0
11+
>
12+
> Starting with chart version 1.0.0, there are breaking changes to values and templates. Please review the migration guide before upgrading and plan for required adjustments.
13+
>
14+
> See charts/nx-cloud/MIGRATION.md for details: [MIGRATION.md](charts/nx-cloud/MIGRATION.md)
15+
16+
1017
### Compatibility Matrix
1118

1219
| Chart Version | Compatible Images |

charts/nx-cloud/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: nx-cloud
33
description: Nx Cloud Helm Chart
44
type: application
5-
version: 1.0.0
5+
version: 1.0.1
66
maintainers:
77
- name: nx
88
url: "https://nx.app/"

charts/nx-cloud/README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,21 @@ Controller service for Nx Agents).
77
>
88
> Starting with chart version 1.0.0, there are breaking changes to values and templates. Please review the migration guide before upgrading and plan for required adjustments.
99
>
10-
> See MIGRATION.md for details: ./MIGRATION.md
10+
> See MIGRATION.md for details: [MIGRATION.md](MIGRATION.md)
11+
12+
## Prerequisites
13+
* MongoDB 7+
14+
* Valkey 7.2+
15+
* Object storage
16+
* Cloud storage (recommended for production deployments)
17+
* S3-compatible storage
18+
* Google Cloud Storage
19+
* Azure Blob Storage
20+
* **OR** built-in file server (not recommended for production)
21+
22+
## Object storage
23+
We recommend using a S3-compatible storage / Google Cloud Storage / Azure Blob Storage for production deployments.
24+
However, if you do not have a storage solution available, you can enable the built-in file server by setting `fileServer.enabled` to `true`.
1125

1226
## Values
1327

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{{ range $name, $manifest := .Values.extraObjects }}
22
---
33
{{ if typeIs "string" $manifest }}
4-
{{- tpl $manifest $ }}
5-
{{- else }}
6-
{{- tpl (toYaml $manifest) $ }}
7-
{{- end }}
4+
{{ $manifest }}
5+
{{ else }}
6+
{{ toYaml $manifest }}
7+
{{ end }}
88
{{ end }}

charts/nx-cloud/templates/configs/valkey-configmap.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ metadata:
77
{{- include "nxCloud.mergedLabels" (dict "resourceLabels" .Values.api.deployment.labels "context" .) | nindent 4 }}
88
data:
99
USE_VALKEY: "true"
10-
VALKEY_CLIENT_PROVIDER: "{{ .Values.api.valkey.clientProvider }}"
11-
VALKEY_USE_SENTINEL: "{{ ternary "true" "false" .Values.api.valkey.useSentinel }}"
12-
VALKEY_SENTINEL_MASTER_NAME: "{{ .Values.api.valkey.sentinelMasterName }}"
13-
VALKEY_PRIMARY_ADDRESS: "{{ .Values.api.valkey.primaryAddress }}"
14-
VALKEY_REPLICA_ADDRESSES: "{{ .Values.api.valkey.replicaAddresses }}"
15-
VALKEY_PORT: "{{ .Values.api.valkey.port }}"
16-
VALKEY_SENTINEL_PORT: "{{ .Values.api.valkey.sentinelPort }}"
17-
VALKEY_USERNAME: "{{ .Values.api.valkey.username }}"
10+
VALKEY_CLIENT_PROVIDER: {{ .Values.api.valkey.clientProvider | quote }}
11+
VALKEY_USE_SENTINEL: {{ ternary "true" "false" .Values.api.valkey.useSentinel | quote }}
12+
VALKEY_SENTINEL_MASTER_NAME: {{ .Values.api.valkey.sentinelMasterName | quote }}
13+
VALKEY_PRIMARY_ADDRESS: {{ .Values.api.valkey.primaryAddress | quote }}
14+
VALKEY_REPLICA_ADDRESSES: {{ .Values.api.valkey.replicaAddresses | quote }}
15+
VALKEY_PORT: {{ .Values.api.valkey.port | quote }}
16+
VALKEY_SENTINEL_PORT: {{ .Values.api.valkey.sentinelPort | quote }}
17+
VALKEY_USERNAME: {{ .Values.api.valkey.username | quote }}

0 commit comments

Comments
 (0)