Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merging the latest updates from develop #5

Merged
merged 88 commits into from
Dec 8, 2023
Merged

Merging the latest updates from develop #5

merged 88 commits into from
Dec 8, 2023

Commits on Nov 14, 2023

  1. Configuration menu
    Copy the full SHA
    f10477e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6c754e1 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2023

  1. Bucket changed to unique name

    max-nag committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    1db325a View commit details
    Browse the repository at this point in the history
  2. PR review updates

    cdunbar13 committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    d352619 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2023

  1. Merge pull request GoogleCloudPlatform#1977 from cdunbar13/maintenanc…

    …e-api-script
    
    Creation of script to check upcoming maintenance on nodes
    cdunbar13 authored Nov 20, 2023
    Configuration menu
    Copy the full SHA
    ee503c6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d2c79f0 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2023

  1. Configuration menu
    Copy the full SHA
    3f4c57e View commit details
    Browse the repository at this point in the history
  2. Merge pull request GoogleCloudPlatform#1984 from nick-stroud/slurm-pl…

    …ugin-type
    
    Fix: variable takes structured data when set
    nick-stroud authored Nov 21, 2023
    Configuration menu
    Copy the full SHA
    f5b1861 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    46a6495 View commit details
    Browse the repository at this point in the history
  4. Merge pull request GoogleCloudPlatform#1983 from nick-stroud/slurm-ma…

    …x-distance
    
    Add documentation how to use max_hops plugin
    nick-stroud authored Nov 21, 2023
    Configuration menu
    Copy the full SHA
    9ed2e14 View commit details
    Browse the repository at this point in the history
  5. Initial testing scripts with new folder for unittests

    Updated testing procedure to mock out subprocess calls which may not always be available and are slow
    cdunbar13 committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    8e3de7f View commit details
    Browse the repository at this point in the history
  6. Merge pull request GoogleCloudPlatform#1982 from harshthakkar01/zonal…

    …_filestore
    
    Add Zonal with lower capacity band support for filestore instance
    harshthakkar01 authored Nov 21, 2023
    Configuration menu
    Copy the full SHA
    acc12f5 View commit details
    Browse the repository at this point in the history
  7. Reduce usage of log.Fatal in tests, use c.Fatal instead

    ```sh
    === RUN   Test
    2023/11/21 21:21:28 Oopsy
    FAIL    hpc-toolkit/pkg/config  0.058s
    ```
    
    ```sh
    === RUN   Test
    
    ----------------------------------------------------------------------
    FAIL: /usr/local/google/home/orlov/wp/hpc-toolkit/pkg/config/config_test.go:1069: MySuite.TestFatal
    
    /usr/local/google/home/orlov/wp/hpc-toolkit/pkg/config/config_test.go:1070:
        c.Fatal("Oopsy")
    ... Error: Oopsy
    
    OOPS: 38 passed, 1 FAILED
    ```
    mr0re1 committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    b52fc61 View commit details
    Browse the repository at this point in the history
  8. Merge pull request GoogleCloudPlatform#1985 from mr0re1/test_fatal

    Reduce usage of `log.Fatal` in tests, use `c.Fatal` instead
    mr0re1 authored Nov 21, 2023
    Configuration menu
    Copy the full SHA
    6ada8bc View commit details
    Browse the repository at this point in the history
  9. Implement Custom Logger

    alyssa-sm committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    f48acd3 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2023

  1. Merge pull request GoogleCloudPlatform#1979 from alyssa-sm/improve-gh…

    …pc-deploy-output
    
    Implement Custom Logging
    alyssa-sm authored Nov 22, 2023
    Configuration menu
    Copy the full SHA
    5927c2d View commit details
    Browse the repository at this point in the history
  2. Refactor pkg/config tests

    * Stop using `TestMain`, see `lib/google-golang/src/testing/testing.go` :
    
    ```go
    // TestMain is a low-level primitive and should not be necessary for casual
    // testing needs, where ordinary test functions suffice.
    ```
    
    * Use `c.Fatal` instead of `log.Fatal`, see GoogleCloudPlatform#1985 for motivation;
    
    * Reduce usage of bloated `get*DeploymentConfigForTest` methods;
    
    * Split setup-free tests into separate `zeroSuite`.
    mr0re1 committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    a08e70d View commit details
    Browse the repository at this point in the history
  3. Merge pull request GoogleCloudPlatform#1987 from mr0re1/test_config

    Refactor `pkg/config` tests
    mr0re1 authored Nov 22, 2023
    Configuration menu
    Copy the full SHA
    254f196 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    33670e7 View commit details
    Browse the repository at this point in the history
  5. Refactor pkg/modulewriter tests

    * Stop using `TestMain`, see `lib/google-golang/src/testing/testing.go` :
    
    ```go
    // TestMain is a low-level primitive and should not be necessary for casual
    // testing needs, where ordinary test functions suffice.
    ```
    
    * Use `c.Fatal` instead of `log.Fatal`, see GoogleCloudPlatform#1985 for motivation;
    mr0re1 committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    b398d9f View commit details
    Browse the repository at this point in the history
  6. Merge pull request GoogleCloudPlatform#1990 from mr0re1/test_modulewrt

    Refactor `pkg/modulewriter` tests
    mr0re1 authored Nov 22, 2023
    Configuration menu
    Copy the full SHA
    764fb5a View commit details
    Browse the repository at this point in the history
  7. Merge pull request GoogleCloudPlatform#1989 from mr0re1/log_fix

    Remove usage of `log.Fatal` from non-tests files
    mr0re1 authored Nov 22, 2023
    Configuration menu
    Copy the full SHA
    af10092 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8050588 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2023

  1. Configuration menu
    Copy the full SHA
    871bc72 View commit details
    Browse the repository at this point in the history
  2. Front end go version updated

    max-nag committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    dc92459 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2023

  1. Refactor pkg/deploymentio tests

    * Stop using `TestMain`, see `lib/google-golang/src/testing/testing.go` :
    
    ```go
    // TestMain is a low-level primitive and should not be necessary for casual
    // testing needs, where ordinary test functions suffice.
    ```
    
    * Use `c.Fatal` instead of `log.Fatal`, see GoogleCloudPlatform#1985 for motivation;
    mr0re1 committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    89595d0 View commit details
    Browse the repository at this point in the history
  2. PR Review update

    cdunbar13 committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    02cddde View commit details
    Browse the repository at this point in the history
  3. Merge pull request GoogleCloudPlatform#1978 from max-nag/front-end-un…

    …ique-bucket-name
    
    Front End Deployment Unique Bucket Name
    tpdownes authored Nov 27, 2023
    Configuration menu
    Copy the full SHA
    580158f View commit details
    Browse the repository at this point in the history
  4. Merge pull request GoogleCloudPlatform#1981 from cdunbar13/maintenanc…

    …e-api-testing
    
    Initial testing scripts with new folder for unittests
    cdunbar13 authored Nov 27, 2023
    Configuration menu
    Copy the full SHA
    f6ab667 View commit details
    Browse the repository at this point in the history
  5. Merge pull request GoogleCloudPlatform#1988 from mr0re1/test_depl

    Refactor `pkg/deploymentio` tests
    mr0re1 authored Nov 27, 2023
    Configuration menu
    Copy the full SHA
    05d32b4 View commit details
    Browse the repository at this point in the history
  6. Merge pull request GoogleCloudPlatform#1992 from max-nag/front-end-go…

    …-version-fix
    
    Front End go Version Updated
    cboneti authored Nov 27, 2023
    Configuration menu
    Copy the full SHA
    1d665eb View commit details
    Browse the repository at this point in the history
  7. Add addlicense pre-commit hook

    * Add `addlicense` pre-commit hook;
    * Remove explicit invokation of it.
    mr0re1 committed Nov 27, 2023
    Configuration menu
    Copy the full SHA
    f722b5d View commit details
    Browse the repository at this point in the history
  8. Merge pull request GoogleCloudPlatform#1994 from mr0re1/addl

    Add `addlicense` pre-commit hook
    mr0re1 authored Nov 27, 2023
    Configuration menu
    Copy the full SHA
    8966d2b View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2023

  1. Configuration menu
    Copy the full SHA
    e56eee9 View commit details
    Browse the repository at this point in the history
  2. Add codespell: workflow, (GoogleCloudPlatform#1888)

    * Add rudimentary codespell config
    
    * Add pre-commit definition for codespell
    
    * ot -> it typo fix
    
    * Some more skips for codespell
    
    * [DATALAD RUNCMD] Do interactive fixing of some ambigous typos
    
    === Do not change lines below ===
    {
     "chain": [],
     "cmd": "codespell -w -i 3 -C 2 ./community/front-end/ofe/script/service_account.sh ./community/front-end/ofe/website/ghpcfe/models.py ./community/front-end/ofe/website/ghpcfe/models.py ./community/modules/scripts/htcondor-install/files/autoscaler.py ./community/modules/scripts/ramble-setup/README.md ./docs/videos/healthcare-and-life-sciences/README.md ./examples/README.md ./tools/validate_configs/test_configs/README.md",
     "exit": 0,
     "extra_inputs": [],
     "inputs": [],
     "outputs": [],
     "pwd": "."
    }
    ^^^ Do not change lines above ^^^
    
    * 1 more typo fixed manually
    
    * Skip (S)hortcuts, more words and files
    
    * [DATALAD RUNCMD] run codespell throughout fixing typo automagically
    
    === Do not change lines below ===
    {
     "chain": [],
     "cmd": "codespell -w",
     "exit": 0,
     "extra_inputs": [],
     "inputs": [],
     "outputs": [],
     "pwd": "."
    }
    ^^^ Do not change lines above ^^^
    
    * Duplicate ignore of requirements.txt and js in pre-commit config
    
    until codespell-project/codespell#3196 is addressed
    yarikoptic authored Nov 28, 2023
    Configuration menu
    Copy the full SHA
    4d9a39a View commit details
    Browse the repository at this point in the history
  3. Merge pull request GoogleCloudPlatform#1991 from mr0re1/tst_haslen

    Replace `Equals`-checker with more appropriate
    mr0re1 authored Nov 28, 2023
    Configuration menu
    Copy the full SHA
    cef1b65 View commit details
    Browse the repository at this point in the history
  4. Merge pull request GoogleCloudPlatform#1996 from mr0re1/meta_test

    Add test to ensure that all modules have metada.yaml set
    mr0re1 authored Nov 28, 2023
    Configuration menu
    Copy the full SHA
    88dcd24 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    89749f9 View commit details
    Browse the repository at this point in the history
  6. Split pkg/validators/validators.go on multiple files.

    **NO CODE CHANGES** just moving around.
    mr0re1 committed Nov 28, 2023
    Configuration menu
    Copy the full SHA
    f5d7fbd View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2023

  1. Bump cryptography from 41.0.4 to 41.0.6 in /community/front-end/ofe

    Bumps [cryptography](https://github.com/pyca/cryptography) from 41.0.4 to 41.0.6.
    - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
    - [Commits](pyca/cryptography@41.0.4...41.0.6)
    
    ---
    updated-dependencies:
    - dependency-name: cryptography
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Nov 29, 2023
    Configuration menu
    Copy the full SHA
    7ebf6c0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request GoogleCloudPlatform#2002 from mr0re1/ref_val

    Split `pkg/validators/validators.go` on multiple files.
    mr0re1 authored Nov 29, 2023
    Configuration menu
    Copy the full SHA
    3cd333b View commit details
    Browse the repository at this point in the history
  3. Merge pull request GoogleCloudPlatform#1997 from mr0re1/meta_p1

    Add modules metadata. Part 1 of 4
    mr0re1 authored Nov 29, 2023
    Configuration menu
    Copy the full SHA
    cb1c715 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    31d0093 View commit details
    Browse the repository at this point in the history
  5. Merge pull request GoogleCloudPlatform#1998 from mr0re1/meta_p2

    Add modules metadata. Part 2 of 4
    mr0re1 authored Nov 29, 2023
    Configuration menu
    Copy the full SHA
    d198216 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6069207 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2023

  1. Configuration menu
    Copy the full SHA
    184349a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    59f99fa View commit details
    Browse the repository at this point in the history
  3. Merge pull request GoogleCloudPlatform#1999 from mr0re1/meta_p3

    Add modules metadata. Part 3 of 4
    mr0re1 authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    b1e4692 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    dbbb9d7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1217af0 View commit details
    Browse the repository at this point in the history
  6. Merge pull request GoogleCloudPlatform#2000 from mr0re1/meta_p4

    Add modules metadata. Part 4 of 4
    mr0re1 authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    bf10fdd View commit details
    Browse the repository at this point in the history
  7. Merge pull request GoogleCloudPlatform#2008 from tpdownes/fix_qsim_ve…

    …rsion
    
    Fix qsim version in example to avoid new CMake changes
    tpdownes authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    8550236 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d64823a View commit details
    Browse the repository at this point in the history
  9. Merge pull request GoogleCloudPlatform#2006 from mr0re1/nuclearwaront…

    …hedancefloor
    
    `ghpc import-inputs`. Fix panic; refactor to meet `gocyclo` requirements
    mr0re1 authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    7a4f2fc View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2023

  1. Merge pull request GoogleCloudPlatform#2009 from mr0re1/to_fork

    Update slurm modules to point to fork
    mr0re1 authored Dec 1, 2023
    Configuration menu
    Copy the full SHA
    eac8705 View commit details
    Browse the repository at this point in the history
  2. DRAFT

    mr0re1 committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    beea522 View commit details
    Browse the repository at this point in the history
  3. Merge pull request GoogleCloudPlatform#1993 from mr0re1/tst_big

    Refactor `pkg/sourcereader` tests.
    mr0re1 authored Dec 1, 2023
    Configuration menu
    Copy the full SHA
    b04c70c View commit details
    Browse the repository at this point in the history
  4. Merge pull request GoogleCloudPlatform#1995 from mr0re1/pc_go_build

    pre-commit. Remove `go-build` hook
    mr0re1 authored Dec 1, 2023
    Configuration menu
    Copy the full SHA
    23a05d9 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2023

  1. Configuration menu
    Copy the full SHA
    4cd67eb View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2023

  1. Bump golang.org/x/sys from 0.14.0 to 0.15.0

    Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.14.0 to 0.15.0.
    - [Commits](golang/sys@v0.14.0...v0.15.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/sys
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    1932aed View commit details
    Browse the repository at this point in the history
  2. Merge pull request GoogleCloudPlatform#2022 from GoogleCloudPlatform/…

    …main
    
    Merge v1.26.0 into development branch
    tpdownes authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    e91980b View commit details
    Browse the repository at this point in the history
  3. Merge pull request GoogleCloudPlatform#2017 from GoogleCloudPlatform/…

    …dependabot/go_modules/develop/golang.org/x/sys-0.15.0
    
    Bump golang.org/x/sys from 0.14.0 to 0.15.0
    tpdownes authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    78ff3cd View commit details
    Browse the repository at this point in the history
  4. Bump google.golang.org/api from 0.151.0 to 0.152.0

    Bumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.151.0 to 0.152.0.
    - [Release notes](https://github.com/googleapis/google-api-go-client/releases)
    - [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)
    - [Commits](googleapis/google-api-go-client@v0.151.0...v0.152.0)
    
    ---
    updated-dependencies:
    - dependency-name: google.golang.org/api
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    f664888 View commit details
    Browse the repository at this point in the history
  5. Merge pull request GoogleCloudPlatform#2018 from GoogleCloudPlatform/…

    …dependabot/go_modules/develop/google.golang.org/api-0.152.0
    
    Bump google.golang.org/api from 0.151.0 to 0.152.0
    tpdownes authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    1a55d11 View commit details
    Browse the repository at this point in the history
  6. Bump github.com/spf13/afero from 1.10.0 to 1.11.0

    Bumps [github.com/spf13/afero](https://github.com/spf13/afero) from 1.10.0 to 1.11.0.
    - [Release notes](https://github.com/spf13/afero/releases)
    - [Commits](spf13/afero@v1.10.0...v1.11.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/spf13/afero
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    768366b View commit details
    Browse the repository at this point in the history
  7. Merge pull request GoogleCloudPlatform#2019 from GoogleCloudPlatform/…

    …dependabot/go_modules/develop/github.com/spf13/afero-1.11.0
    
    Bump github.com/spf13/afero from 1.10.0 to 1.11.0
    tpdownes authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    2e2deaa View commit details
    Browse the repository at this point in the history
  8. Bump github.com/go-git/go-git/v5 from 5.10.0 to 5.10.1

    Bumps [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) from 5.10.0 to 5.10.1.
    - [Release notes](https://github.com/go-git/go-git/releases)
    - [Commits](go-git/go-git@v5.10.0...v5.10.1)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/go-git/go-git/v5
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    c4c1f7e View commit details
    Browse the repository at this point in the history
  9. Merge pull request GoogleCloudPlatform#2020 from GoogleCloudPlatform/…

    …dependabot/go_modules/develop/github.com/go-git/go-git/v5-5.10.1
    
    Bump github.com/go-git/go-git/v5 from 5.10.0 to 5.10.1
    tpdownes authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    a5b1e9d View commit details
    Browse the repository at this point in the history
  10. Merge pull request GoogleCloudPlatform#2003 from GoogleCloudPlatform/…

    …dependabot/pip/community/front-end/ofe/cryptography-41.0.6
    
    Bump cryptography from 41.0.4 to 41.0.6 in /community/front-end/ofe
    tpdownes authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    ab73021 View commit details
    Browse the repository at this point in the history
  11. Don't test metadata services against legacy ones.

    Legacy metadata to be removed, added comment.
    mr0re1 committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    6b0ca94 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2023

  1. Merge pull request GoogleCloudPlatform#2024 from mr0re1/relax_service…

    …s_test
    
    Don't test metadata services against legacy ones.
    mr0re1 authored Dec 5, 2023
    Configuration menu
    Copy the full SHA
    aacfde3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8731b33 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ce56126 View commit details
    Browse the repository at this point in the history
  4. Merge pull request GoogleCloudPlatform#2015 from nick-stroud/spack_us…

    …er_access
    
    Document permissions around manual usage of Spack installation
    nick-stroud authored Dec 5, 2023
    Configuration menu
    Copy the full SHA
    1942ef2 View commit details
    Browse the repository at this point in the history
  5. Merge pull request GoogleCloudPlatform#2014 from nick-stroud/formatte…

    …d-image-examples
    
    Adding snippet of commonly used images to make it easy to modify a blueprint
    nick-stroud authored Dec 5, 2023
    Configuration menu
    Copy the full SHA
    03c727b View commit details
    Browse the repository at this point in the history
  6. Fix terraform TFlint plugin to penultimate release

    Use older release until we address the code changes required by
    terraform-linters/tflint-ruleset-terraform#133
    tpdownes committed Dec 5, 2023
    Configuration menu
    Copy the full SHA
    cdb36d2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1efe8e4 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    1098e99 View commit details
    Browse the repository at this point in the history
  9. PR review updates

    cdunbar13 committed Dec 5, 2023
    Configuration menu
    Copy the full SHA
    f331172 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f4f093f View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    70a56f9 View commit details
    Browse the repository at this point in the history
  12. Merge pull request GoogleCloudPlatform#2023 from cdunbar13/maintenanc…

    …e-api-slurm
    
    Slurm flag for maintenance API script
    cdunbar13 authored Dec 5, 2023
    Configuration menu
    Copy the full SHA
    f3a0c47 View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2023

  1. Configuration menu
    Copy the full SHA
    11b6ca3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request GoogleCloudPlatform#2025 from tpdownes/eliminate_l…

    …ocal_ssd_warning
    
    Eliminate local SSD warning
    tpdownes authored Dec 6, 2023
    Configuration menu
    Copy the full SHA
    f084cd0 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2023

  1. Configuration menu
    Copy the full SHA
    78a6bb0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request GoogleCloudPlatform#2028 from mr0re1/didnt_read

    Exclude `pkg/*` from `packer-readme` hook.
    mr0re1 authored Dec 7, 2023
    Configuration menu
    Copy the full SHA
    c9a16d6 View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2023

  1. Disable go-critic hook

    mr0re1 committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    37240d7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request GoogleCloudPlatform#2029 from mr0re1/no_critic

    Disable `go-critic` hook
    mr0re1 authored Dec 8, 2023
    Configuration menu
    Copy the full SHA
    580a232 View commit details
    Browse the repository at this point in the history