Skip to content
Open
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
6 changes: 3 additions & 3 deletions docs/kubernetes/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
To build and install a development version of the driver:

```sh
GCE_PD_CSI_STAGING_IMAGE=gcr.io/path/to/driver/image:dev # Location to push dev image to
GCE_PD_CSI_STAGING_IMAGE=registry.pkg.dev/path/to/driver/image # Location to push dev image to
make push-container

# Modify controller.yaml and node.yaml in ./deploy/kubernetes/dev to use dev image
Expand Down Expand Up @@ -152,10 +152,10 @@ kubetest <custom flags based on your provider> \

## Dependency management

Use [dep](https://github.com/golang/dep)
Use go modules to manage dependencies

```sh
dep ensure
go mod tidy
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also add go mod vendor to download any required packages

```

To modify dependencies or versions change `./Gopkg.toml`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this still relevant?

Expand Down