Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion mmv1/products/hypercomputecluster/Cluster.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2025 Google Inc.
# Copyright 2026 Google Inc.
# 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
Expand Down Expand Up @@ -597,6 +597,13 @@ properties:
type: Boolean
required: true
description: Enables Auto-class feature.
- name: terminalStorageClass
type: String
description: |-
Terminal storage class of the autoclass bucket
Possible values:
NEARLINE
ARCHIVE
- name: bucket
type: String
required: true
Expand Down Expand Up @@ -717,6 +724,14 @@ properties:
description: |-
Name of the Managed Lustre instance to create, in the format
`projects/{project}/locations/{location}/instances/{instance}`
- name: perUnitStorageThroughput
Comment thread
rpgoog marked this conversation as resolved.
type: String
description: |-
Throughput of the instance in MB/s/TiB. Valid values are 125, 250,
500, 1000. See [Performance tiers and maximum storage
capacities](https://cloud.google.com/managed-lustre/docs/create-instance#performance-tiers)
for more information.
immutable: true
- name: filestore
type: NestedObject
description: A reference to a [Filestore](https://cloud.google.com/filestore) instance.
Expand Down
2 changes: 1 addition & 1 deletion mmv1/products/hypercomputecluster/product.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2025 Google Inc.
# Copyright 2026 Google Inc.
# 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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,7 @@ resource "google_hypercomputecluster_cluster" "cluster" {
bucket = "bucket-new-2-%{random_suffix}"
autoclass {
enabled = true
terminal_storage_class = "NEARLINE"
Comment thread
rpgoog marked this conversation as resolved.
Outdated
}
hierarchical_namespace {
enabled = false
Expand Down Expand Up @@ -543,6 +544,7 @@ resource "google_hypercomputecluster_cluster" "cluster" {
description = "Lustre instance created via Terraform"
filesystem = "lustrefs"
lustre = "projects/${local.project_id}/locations/us-central1-a/instances/lustre-%{random_suffix}"
per_unit_storage_throughput = "1000"
Comment thread
rpgoog marked this conversation as resolved.
Outdated
}
}
}
Expand Down
Loading