Skip to content

Update development doc for go modules and correct image location #2145

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
```

To modify dependencies or versions change `./Gopkg.toml`
Expand Down