-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Additions to the CONTRIBUTING doc #1387
Comments
For 1, we have #494, which has kind of been an "as we go" thing. Maybe it's worth doing a pass just to clean these up? |
This issue is about documenting that this is even a thing. We know that but new contributors won't. |
Let's definitely start to document this stuff. xref #867 |
xref #1104 |
More things:
|
More: Generating mocks for our interfaces. We use a package to do that. Example: if you want to change this mock: https://github.com/heptio/velero/blob/master/pkg/restic/mocks/backupper.go Run:
Might need to run |
would be great to ship these docs updates as part of v1.1 if anyone has time -- though not a must-have. |
When running the website locally, this is the command that works for me:
Otherwise content that I'm adding is not included/displayed as expected. |
More instructions for the website. When adding a blog post:
|
Instructions to add: a changelog file for any significant change. |
Closed by: Add code and website guidelines #2032 |
For Kube/Ark imports, since many of the packages have names like
v1
, we often give them explicit names likecorev1
,arkv1
, etc. to disambiguate. The problem is that we have no consistency in how we do this, so every file is different.I'm proposing a standard way of naming these across Ark. The convention would be:
So, for example:
Ref: #494
3) ProtobufTo generate protobuf files, must have version 1.0.0 of protoc-gen-go. Follow instructions in the link below and set git tag to:GIT_TAG="v1.0.0"
https://github.com/golang/protobuf#installation
Protobuf generation was addressed here: #1887
The text was updated successfully, but these errors were encountered: