-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1276 from GoogleCloudPlatform/release-candidate
Release v1.17.0
- Loading branch information
Showing
205 changed files
with
7,157 additions
and
2,200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
### Submission Checklist | ||
|
||
* [ ] Have you installed and run this change against pre-commit? (`pre-commit | ||
install`) | ||
* [ ] Are all tests passing? (`make tests`) | ||
* [ ] Have you written unit tests to cover this change? | ||
* [ ] Is unit test coverage still above 80%? | ||
* [ ] Have you updated all applicable documentation? | ||
* [ ] Have you followed the guidelines in our Contributing document? | ||
Please take the following actions before submitting this pull request. | ||
|
||
* Fork your PR branch from the Toolkit "develop" branch (not main) | ||
* Test all changes with pre-commit in a local branch [#](https://goo.gle/hpc-toolkit#development) | ||
* Confirm that "make tests" passes all tests | ||
* Add or modify unit tests to cover code changes | ||
* Ensure that unit test coverage remains above 80% | ||
* Update all applicable documentation | ||
* Follow Cloud HPC Toolkit Contribution guidelines [#](https://goo.gle/hpc-toolkit-contributing) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Copyright 2023 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
--- | ||
|
||
blueprint_name: small-gke | ||
|
||
vars: | ||
project_id: ## Set GCP Project ID Here ## | ||
deployment_name: cluster-01 | ||
region: us-central1 | ||
|
||
deployment_groups: | ||
- group: primary | ||
modules: | ||
- id: network1 | ||
source: modules/network/vpc | ||
settings: | ||
subnetwork_name: gke-subnet | ||
secondary_ranges: | ||
gke-subnet: | ||
- range_name: pods | ||
ip_cidr_range: 10.4.0.0/14 | ||
- range_name: services | ||
ip_cidr_range: 10.0.32.0/20 | ||
|
||
- id: gke_cluster | ||
source: community/modules/scheduler/gke-cluster | ||
use: [network1] | ||
outputs: [instructions] | ||
|
||
- id: compute_pool | ||
source: community/modules/compute/gke-node-pool | ||
use: [gke_cluster] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
# Copyright 2022 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
--- | ||
|
||
blueprint_name: slurm-crd | ||
|
||
vars: | ||
project_id: ## Set GCP Project ID Here ## | ||
deployment_name: slurm-chromedesktop | ||
region: us-central1 | ||
zone: us-central1-c | ||
|
||
# Documentation for each of the modules used below can be found at | ||
# https://github.com/GoogleCloudPlatform/hpc-toolkit/blob/main/modules/README.md | ||
|
||
deployment_groups: | ||
- group: primary | ||
modules: | ||
- id: network1 | ||
source: modules/network/vpc | ||
|
||
- id: homefs | ||
source: modules/file-system/filestore | ||
use: [network1] | ||
settings: | ||
local_mount: /home | ||
|
||
- id: remote-desktop | ||
source: community/modules/remote-desktop/chrome-remote-desktop | ||
use: [network1] | ||
settings: | ||
install_nvidia_driver: true | ||
# instance_count: 0 will create installation scripts only | ||
# which can be used with slurm node provisioning | ||
instance_count: 0 | ||
|
||
- id: remote_desktop_startup | ||
source: modules/scripts/startup-script | ||
settings: | ||
runners: | ||
- type: ansible-local | ||
source: modules/chrome-remote-desktop/scripts/configure-grid-drivers.yml | ||
destination: /tmp/configure-grid-drivers.yml | ||
- type: ansible-local | ||
source: modules/chrome-remote-desktop/scripts/configure-chrome-desktop.yml | ||
destination: /tmp/configure-chrome-desktop.yml | ||
- type: ansible-local | ||
source: modules/chrome-remote-desktop/scripts/disable-sleep.yml | ||
destination: /tmp/disable-sleep.yml | ||
|
||
- id: crd_node_group | ||
source: community/modules/compute/schedmd-slurm-gcp-v5-node-group | ||
settings: | ||
machine_type: n1-standard-8 | ||
node_count_dynamic_max: 1 | ||
disable_public_ips: false | ||
instance_image: | ||
family: schedmd-v5-slurm-22-05-8-ubuntu-2004-lts | ||
project: projects/schedmd-slurm-public/global/images/family | ||
guest_accelerator: | ||
- type: nvidia-tesla-t4-vws | ||
count: 1 | ||
|
||
- id: crd_partition | ||
source: community/modules/compute/schedmd-slurm-gcp-v5-partition | ||
use: | ||
- network1 | ||
- homefs | ||
- remote_desktop_startup | ||
- crd_node_group | ||
settings: | ||
partition_name: desktop | ||
enable_placement: false | ||
partition_startup_scripts_timeout: 900 | ||
|
||
- id: compute_node_group | ||
source: community/modules/compute/schedmd-slurm-gcp-v5-node-group | ||
settings: | ||
machine_type: n2-standard-4 | ||
node_count_dynamic_max: 1 | ||
|
||
- id: compute_partition | ||
source: community/modules/compute/schedmd-slurm-gcp-v5-partition | ||
use: | ||
- network1 | ||
- homefs | ||
- compute_node_group | ||
settings: | ||
partition_name: compute | ||
|
||
- id: slurm_controller | ||
source: community/modules/scheduler/schedmd-slurm-gcp-v5-controller | ||
use: | ||
- network1 | ||
- homefs | ||
- crd_partition | ||
- compute_partition | ||
settings: | ||
disable_controller_public_ips: false | ||
compute_startup_scripts_timeout: 900 | ||
cloud_parameters: | ||
resume_rate: 0 | ||
resume_timeout: 900 | ||
suspend_rate: 0 | ||
suspend_timeout: 300 | ||
no_comma_params: false | ||
|
||
- id: slurm_login | ||
source: community/modules/scheduler/schedmd-slurm-gcp-v5-login | ||
use: | ||
- network1 | ||
- slurm_controller | ||
settings: | ||
machine_type: n2-standard-4 | ||
disable_login_public_ips: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.