Documentation ¶
Index ¶
- Constants
- func CreateEmptyFileInBucket(fileName, bucketName string)
- func CreateImplicitDirInBucket(dirPath, bucketName string)
- type TestDeployment
- type TestGCPProjectIAMPolicyBinding
- type TestGCPServiceAccount
- type TestJob
- type TestKubernetesServiceAccount
- type TestPod
- func (t *TestPod) Cleanup(ctx context.Context)
- func (t *TestPod) Create(ctx context.Context)
- func (t *TestPod) GetNode() string
- func (t *TestPod) SetAnnotations(annotations map[string]string)
- func (t *TestPod) SetCommand(cmd string)
- func (t *TestPod) SetImage(image string)
- func (t *TestPod) SetName(name string)
- func (t *TestPod) SetNodeAffinity(nodeName string, sameNode bool)
- func (t *TestPod) SetNodeSelector(nodeSelector map[string]string)
- func (t *TestPod) SetNonRootSecurityContext()
- func (t *TestPod) SetPod(pod *v1.Pod)
- func (t *TestPod) SetResource(cpuLimit, memoryLimit, storageLimit string)
- func (t *TestPod) SetRestartPolicy(rp v1.RestartPolicy)
- func (t *TestPod) SetServiceAccount(sa string)
- func (t *TestPod) SetupVolume(volumeResource *storageframework.VolumeResource, name, mountPath string, ...)
- func (t *TestPod) SetupVolumeWithSubPath(volumeResource *storageframework.VolumeResource, name, mountPath string, ...)
- func (t *TestPod) VerifyExecInPodFail(f *framework.Framework, containerName, shExec string, exitCode int)
- func (t *TestPod) VerifyExecInPodSucceed(f *framework.Framework, containerName, shExec string)
- func (t *TestPod) VerifyExecInPodSucceedWithFullOutput(f *framework.Framework, containerName, shExec string)
- func (t *TestPod) WaitFoSuccess(ctx context.Context)
- func (t *TestPod) WaitForFailedMountError(ctx context.Context, msg string)
- func (t *TestPod) WaitForRunning(ctx context.Context)
- func (t *TestPod) WaitForUnschedulable(ctx context.Context)
- type TestSecret
Constants ¶
View Source
const ( TesterContainerName = "volume-tester" K8sServiceAccountName = "gcsfuse-csi-sa" //nolint:gosec K8sSecretName = "gcsfuse-csi-test-secret" FakeVolumePrefix = "gcsfuse-csi-fake-volume" InvalidVolumePrefix = "gcsfuse-csi-invalid-volume" NonRootVolumePrefix = "gcsfuse-csi-non-root-volume" InvalidMountOptionsVolumePrefix = "gcsfuse-csi-invalid-mount-options-volume" ImplicitDirsVolumePrefix = "gcsfuse-csi-implicit-dirs-volume" ForceNewBucketPrefix = "gcsfuse-csi-force-new-bucket" SubfolderInBucketPrefix = "gcsfuse-csi-subfolder-in-bucket" MultipleBucketsPrefix = "gcsfuse-csi-multiple-buckets" ImplicitDirsPath = "implicit-dir" InvalidVolume = "<invalid-name>" GoogleCloudCliImage = "gcr.io/google.com/cloudsdktool/google-cloud-cli:slim" UbuntuImage = "ubuntu:20.04" )
Variables ¶
This section is empty.
Functions ¶
func CreateEmptyFileInBucket ¶ added in v0.1.5
func CreateEmptyFileInBucket(fileName, bucketName string)
func CreateImplicitDirInBucket ¶ added in v0.1.5
func CreateImplicitDirInBucket(dirPath, bucketName string)
Types ¶
type TestDeployment ¶ added in v0.1.1
type TestDeployment struct {
// contains filtered or unexported fields
}
func NewTestDeployment ¶ added in v0.1.1
func (*TestDeployment) Cleanup ¶ added in v0.1.1
func (t *TestDeployment) Cleanup(ctx context.Context)
func (*TestDeployment) Create ¶ added in v0.1.1
func (t *TestDeployment) Create(ctx context.Context)
func (*TestDeployment) GetPod ¶ added in v0.1.1
func (t *TestDeployment) GetPod(ctx context.Context) *v1.Pod
func (*TestDeployment) WaitForComplete ¶ added in v0.1.1
func (t *TestDeployment) WaitForComplete()
type TestGCPProjectIAMPolicyBinding ¶
type TestGCPProjectIAMPolicyBinding struct {
// contains filtered or unexported fields
}
func NewTestGCPProjectIAMPolicyBinding ¶
func NewTestGCPProjectIAMPolicyBinding(projectID, member, role, condition string) *TestGCPProjectIAMPolicyBinding
func (*TestGCPProjectIAMPolicyBinding) Cleanup ¶
func (t *TestGCPProjectIAMPolicyBinding) Cleanup(ctx context.Context)
func (*TestGCPProjectIAMPolicyBinding) Create ¶
func (t *TestGCPProjectIAMPolicyBinding) Create(ctx context.Context)
type TestGCPServiceAccount ¶
type TestGCPServiceAccount struct {
// contains filtered or unexported fields
}
func NewTestGCPServiceAccount ¶
func NewTestGCPServiceAccount(name, projectID string) *TestGCPServiceAccount
func (*TestGCPServiceAccount) AddIAMPolicyBinding ¶ added in v0.1.4
func (t *TestGCPServiceAccount) AddIAMPolicyBinding(ctx context.Context, ns *v1.Namespace)
func (*TestGCPServiceAccount) Cleanup ¶
func (t *TestGCPServiceAccount) Cleanup(ctx context.Context)
func (*TestGCPServiceAccount) Create ¶
func (t *TestGCPServiceAccount) Create(ctx context.Context)
func (*TestGCPServiceAccount) GetEmail ¶ added in v0.1.4
func (t *TestGCPServiceAccount) GetEmail() string
type TestJob ¶ added in v0.1.1
type TestJob struct {
// contains filtered or unexported fields
}
func NewTestJob ¶ added in v0.1.1
func (*TestJob) WaitForJobPodsSucceeded ¶ added in v0.1.1
type TestKubernetesServiceAccount ¶
type TestKubernetesServiceAccount struct {
// contains filtered or unexported fields
}
func (*TestKubernetesServiceAccount) Cleanup ¶
func (t *TestKubernetesServiceAccount) Cleanup(ctx context.Context)
func (*TestKubernetesServiceAccount) Create ¶
func (t *TestKubernetesServiceAccount) Create(ctx context.Context)
type TestPod ¶
type TestPod struct {
// contains filtered or unexported fields
}
func (*TestPod) SetAnnotations ¶
func (*TestPod) SetCommand ¶
func (*TestPod) SetNodeAffinity ¶ added in v0.1.4
func (*TestPod) SetNodeSelector ¶
func (*TestPod) SetNonRootSecurityContext ¶
func (t *TestPod) SetNonRootSecurityContext()
func (*TestPod) SetResource ¶ added in v0.1.4
func (*TestPod) SetRestartPolicy ¶ added in v0.1.3
func (t *TestPod) SetRestartPolicy(rp v1.RestartPolicy)
func (*TestPod) SetServiceAccount ¶
func (*TestPod) SetupVolume ¶
func (t *TestPod) SetupVolume(volumeResource *storageframework.VolumeResource, name, mountPath string, readOnly bool, mountOptions ...string)
func (*TestPod) SetupVolumeWithSubPath ¶ added in v0.1.5
func (t *TestPod) SetupVolumeWithSubPath(volumeResource *storageframework.VolumeResource, name, mountPath string, readOnly bool, subPath string, reuseMount bool, mountOptions ...string)
func (*TestPod) VerifyExecInPodFail ¶
func (t *TestPod) VerifyExecInPodFail(f *framework.Framework, containerName, shExec string, exitCode int)
VerifyExecInPodFail verifies shell cmd in target pod fail with certain exit code.
func (*TestPod) VerifyExecInPodSucceed ¶
VerifyExecInPodSucceed verifies shell cmd in target pod succeed.
func (*TestPod) VerifyExecInPodSucceedWithFullOutput ¶ added in v0.1.4
func (t *TestPod) VerifyExecInPodSucceedWithFullOutput(f *framework.Framework, containerName, shExec string)
VerifyExecInPodSucceedWithFullOutput verifies shell cmd in target pod succeed with full output.
func (*TestPod) WaitFoSuccess ¶ added in v0.1.3
func (*TestPod) WaitForFailedMountError ¶
func (*TestPod) WaitForRunning ¶
func (*TestPod) WaitForUnschedulable ¶ added in v0.1.1
type TestSecret ¶
type TestSecret struct {
// contains filtered or unexported fields
}
func NewTestSecret ¶
func (*TestSecret) Cleanup ¶
func (t *TestSecret) Cleanup(ctx context.Context)
func (*TestSecret) Create ¶
func (t *TestSecret) Create(ctx context.Context)
Click to show internal directories.
Click to hide internal directories.