Skip to content

Commit be17c0b

Browse files
authored
Merge branch 'develop' into eda-blueprints-new
2 parents 07c4fbe + 8e2e962 commit be17c0b

File tree

34 files changed

+48
-39
lines changed

34 files changed

+48
-39
lines changed

CONTRIBUTING.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
We'd love to accept your patches and contributions to this project. There are
44
just a few small guidelines you need to follow.
55

6+
## Branching Strategy
7+
To maintain a stable release history, this repository follows a specific branching workflow:
8+
9+
`main`: Contains the latest stable release. This branch is only updated during a new release cycle.
10+
11+
`develop`: The active development branch. All new features, bug fixes, and community contributions are merged here first.
12+
13+
**Important**: All Pull Requests must be targeted at the `develop` branch. PRs targeting `main` will be closed or redirected.
14+
615
## Contributor License Agreement
716

817
Contributions to this project must be accompanied by a Contributor License

community/examples/client-google-cloud-storage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ deployment_groups:
3131
source: modules/network/vpc
3232

3333
- id: new-bucket
34-
source: community/modules/file-system/cloud-storage-bucket
34+
source: modules/file-system/cloud-storage-bucket
3535
settings:
3636
name_prefix: new-bucket
3737
random_suffix: true

community/examples/fsi-montecarlo-on-batch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ deployment_groups:
4545
modules:
4646

4747
- id: fsi_bucket
48-
source: community/modules/file-system/cloud-storage-bucket
48+
source: modules/file-system/cloud-storage-bucket
4949
settings:
5050
name_prefix: fsi_bucket
5151
random_suffix: true

community/modules/compute/notebook/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This is a simple usage, using the default network:
1212

1313
```yaml
1414
- id: bucket
15-
source: community/modules/file-system/cloud-storage-bucket
15+
source: modules/file-system/cloud-storage-bucket
1616
settings:
1717
name_prefix: my-bucket
1818
local_mount: /home/jupyter/my-bucket
@@ -30,7 +30,7 @@ If the user wants do specify a custom subnetwork, or specific external IP restri
3030

3131
```yaml
3232
- id: bucket
33-
source: community/modules/file-system/cloud-storage-bucket
33+
source: modules/file-system/cloud-storage-bucket
3434
settings:
3535
name_prefix: my-bucket
3636
local_mount: /home/jupyter/my-bucket

community/modules/compute/notebook/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ locals {
2626
bucket = replace(var.gcs_bucket_path, "gs://", "")
2727
post_script_filename = "mount-${local.suffix}.sh"
2828

29-
# mount_runner_args is defined here: https://github.com/GoogleCloudPlatform/hpc-toolkit/blob/3abddcfbd245b0e6747917a4e55b30658414ffd7/community/modules/file-system/cloud-storage-bucket/outputs.tf#L40
29+
# mount_runner_args is defined in the file: cluster-toolkit/modules/file-system/cloud-storage-bucket/outputs.tf
3030
mount_args = split(" ", var.mount_runner.args)
3131

3232
unused = local.mount_args[0]

community/modules/scheduler/htcondor-setup/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ No providers.
9191
| Name | Source | Version |
9292
|------|--------|---------|
9393
| <a name="module_health_check_firewall_rule"></a> [health\_check\_firewall\_rule](#module\_health\_check\_firewall\_rule) | ../../../../modules/network/firewall-rules | n/a |
94-
| <a name="module_htcondor_bucket"></a> [htcondor\_bucket](#module\_htcondor\_bucket) | ../../../../community/modules/file-system/cloud-storage-bucket | n/a |
94+
| <a name="module_htcondor_bucket"></a> [htcondor\_bucket](#module\_htcondor\_bucket) | ../../../../modules/file-system/cloud-storage-bucket | n/a |
9595
9696
## Resources
9797

community/modules/scheduler/htcondor-setup/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ module "health_check_firewall_rule" {
5454
}
5555

5656
module "htcondor_bucket" {
57-
source = "../../../../community/modules/file-system/cloud-storage-bucket"
57+
source = "../../../../modules/file-system/cloud-storage-bucket"
5858

5959
project_id = var.project_id
6060
deployment_name = var.deployment_name

examples/gke-a3-ultragpu/gke-a3-ultragpu.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ deployment_groups:
146146
- container.admin
147147

148148
- id: training_bucket
149-
source: community/modules/file-system/cloud-storage-bucket
149+
source: modules/file-system/cloud-storage-bucket
150150
settings:
151151
local_mount: /training-data
152152
name_prefix: training
@@ -155,7 +155,7 @@ deployment_groups:
155155
enable_hierarchical_namespace: true
156156

157157
- id: checkpoint_bucket
158-
source: community/modules/file-system/cloud-storage-bucket
158+
source: modules/file-system/cloud-storage-bucket
159159
settings:
160160
local_mount: /checkpoint-data
161161
name_prefix: checkpoint

examples/gke-a4/gke-a4.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ deployment_groups:
161161
- container.admin
162162

163163
- id: training_bucket
164-
source: community/modules/file-system/cloud-storage-bucket
164+
source: modules/file-system/cloud-storage-bucket
165165
settings:
166166
local_mount: /training-data
167167
name_prefix: training
@@ -170,7 +170,7 @@ deployment_groups:
170170
enable_hierarchical_namespace: true
171171

172172
- id: checkpoint_bucket
173-
source: community/modules/file-system/cloud-storage-bucket
173+
source: modules/file-system/cloud-storage-bucket
174174
settings:
175175
local_mount: /checkpoint-data
176176
name_prefix: checkpoint

examples/gke-a4x/gke-a4x.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ deployment_groups:
179179
- artifactregistry.reader
180180

181181
- id: training_bucket
182-
source: community/modules/file-system/cloud-storage-bucket
182+
source: modules/file-system/cloud-storage-bucket
183183
settings:
184184
local_mount: /training-data
185185
name_prefix: training
@@ -188,7 +188,7 @@ deployment_groups:
188188
enable_hierarchical_namespace: true
189189

190190
- id: checkpoint_bucket
191-
source: community/modules/file-system/cloud-storage-bucket
191+
source: modules/file-system/cloud-storage-bucket
192192
settings:
193193
local_mount: /checkpoint-data
194194
name_prefix: checkpoint

0 commit comments

Comments
 (0)