github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_env_reference.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 // Reference to env resource 13 type EnvReference struct { 14 Reference *LocalObjectReference `json:"reference"` 15 // whether we shoud mount resource 16 Mount bool `json:"mount,omitempty"` 17 // where we shoud mount resource 18 MountPath string `json:"mountPath,omitempty"` 19 // whether we shoud map to variables from resource 20 MapToVariables bool `json:"mapToVariables,omitempty"` 21 }