Skip to content

Commit

Permalink
fix: persistent typo
Browse files Browse the repository at this point in the history
  • Loading branch information
testwill committed Sep 4, 2023
1 parent 074a00d commit 02f38db
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd/pod/createPod.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func init() {
CreatePodCmd.Flags().StringVar(&name, "name", "", "any pod name for easy reference")
CreatePodCmd.Flags().StringSliceVar(&ports, "ports", nil, "ports to expose; max only 1 http and 1 tcp allowed; e.g. '8888/http'")
CreatePodCmd.Flags().StringVar(&templateId, "templateId", "", "templateId to use with the pod")
CreatePodCmd.Flags().IntVar(&volumeInGb, "volumeSize", 1, "persistant volume disk size in GB")
CreatePodCmd.Flags().IntVar(&volumeInGb, "volumeSize", 1, "persistent volume disk size in GB")
CreatePodCmd.Flags().StringVar(&volumeMountPath, "volumePath", "/runpod", "container volume path")

CreatePodCmd.MarkFlagRequired("gpuType") //nolint
Expand Down
2 changes: 1 addition & 1 deletion cmd/pods/createPods.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func init() {
CreatePodsCmd.Flags().IntVar(&minMemoryInGb, "mem", 20, "minimum system memory needed")
CreatePodsCmd.Flags().IntVar(&minVcpuCount, "vcpu", 1, "minimum vCPUs needed")
CreatePodsCmd.Flags().IntVar(&podCount, "podCount", 1, "number of pods to create with the same name")
CreatePodsCmd.Flags().IntVar(&volumeInGb, "volumeSize", 1, "persistant volume disk size in GB")
CreatePodsCmd.Flags().IntVar(&volumeInGb, "volumeSize", 1, "persistent volume disk size in GB")
CreatePodsCmd.Flags().StringSliceVar(&env, "env", nil, "container arguments")
CreatePodsCmd.Flags().StringSliceVar(&ports, "ports", nil, "ports to expose; max only 1 http and 1 tcp allowed; e.g. '8888/http'")
CreatePodsCmd.Flags().StringVar(&dockerArgs, "args", "", "container arguments")
Expand Down
2 changes: 1 addition & 1 deletion doc/runpodctl_create_pod.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runpodctl create pod [flags]
--templateId string templateId to use with the pod
--vcpu int minimum vCPUs needed (default 1)
--volumePath string container volume path (default "/runpod")
--volumeSize int persistant volume disk size in GB (default 1)
--volumeSize int persistent volume disk size in GB (default 1)
```

### SEE ALSO
Expand Down
2 changes: 1 addition & 1 deletion doc/runpodctl_create_pods.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runpodctl create pods [flags]
--secureCloud create in secure cloud
--vcpu int minimum vCPUs needed (default 1)
--volumePath string container volume path (default "/runpod")
--volumeSize int persistant volume disk size in GB (default 1)
--volumeSize int persistent volume disk size in GB (default 1)
```

### SEE ALSO
Expand Down

0 comments on commit 02f38db

Please sign in to comment.