github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_nfs_volume_source.go (about) 1 /* 2 * Testkube API 3 * 4 * Testkube provides a Kubernetes-native framework for test definition, execution and results 5 * 6 * API version: 1.0.0 7 * Contact: testkube@kubeshop.io 8 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 9 */ 10 package testkube 11 12 // nfs represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs 13 type NfsVolumeSource struct { 14 // path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs 15 Path string `json:"path"` 16 // readOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs 17 ReadOnly bool `json:"readOnly,omitempty"` 18 // server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs 19 Server string `json:"server"` 20 }