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

Add nfs support to cloudrun v1 services. #10244

Merged
merged 3 commits into from
May 16, 2024
Merged
Changes from all commits
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
22 changes: 22 additions & 0 deletions mmv1/products/cloudrun/Service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -875,6 +875,28 @@ properties:
Driver-specific attributes. The following options are supported for available drivers:
* gcsfuse.run.googleapis.com
* bucketName: The name of the Cloud Storage Bucket that backs this volume. The Cloud Run Service identity must have access to this bucket.
- !ruby/object:Api::Type::NestedObject
name: nfs
bskaplan marked this conversation as resolved.
Show resolved Hide resolved
description: |-
A filesystem backed by a Network File System share. This filesystem requires the
run.googleapis.com/execution-environment annotation to be set to "gen2" and
run.googleapis.com/launch-stage set to "BETA" or "ALPHA".
min_version: beta
properties:
- !ruby/object:Api::Type::String
name: server
required: true
description: |-
IP address or hostname of the NFS server
- !ruby/object:Api::Type::String
name: path
required: true
description: |-
Path exported by the NFS server
- !ruby/object:Api::Type::Boolean
name: readOnly
bskaplan marked this conversation as resolved.
Show resolved Hide resolved
description: |-
If true, mount the NFS volume as read only in all mounts. Defaults to false.
- !ruby/object:Api::Type::Enum
name: servingState
deprecation_message: >-
Expand Down