Thanks for your interest in contributing to MongoDB Atlas CLI, this document describes some guidelines necessary to participate in the community.
If you want to extend the Atlas CLI with custom functionality, take a look at the Atlas CLI Plugin Example to learn more about creating plugins.
MongoDB support is provided under MongoDB Atlas or Enterprise Advanced support plans. Please don't use the GitHub issue tracker to ask questions.
We welcome any feedback or feature request, to submit yours please head over to our feedback page.
Please create a GitHub issue describing the kind of problem you're facing with as much detail as possible, including things like operating system or anything else may be relevant to the issue.
- After 30 days of no activity (no comments or commits on an issue/PR) we automatically tag it as "stale" and add a message:
This issue/PR has gone 30 days without any activity and meets the project's definition of "stale". This will be auto-closed if there is no new activity over the next 60 days. If the issue is still relevant and active, you can simply comment with a "bump" to keep it open, or add the label "not_stale". Thanks for keeping our repository healthy!
- After 60 more days of no activity we automatically close the issue/PR.
The Atlas CLI project welcomes all contributors and contributions regardless of skill or experience level. If you are interested in helping with the project, please follow our guidelines.
To create the best possible product for our users and the best contribution experience for our developers, we have a set of guidelines to ensure that all contributions are acceptable.
To make the contribution process as seamless as possible, we ask for the following:
- Fork the repository to work on your changes. Note that code contributions are accepted through pull requests to encourage discussion and allow for a smooth review experience.
- When you’re ready to create a pull request, be sure to:
- Sign the CLA.
- Have test cases for the new code. If you have questions about how to do this, please ask in your pull request or check the Building and Testing section.
- Run
make fmt
. - Add documentation if you are adding new features or changing functionality.
- Confirm that
make check
succeeds. GitHub Actions.
- Fork the repository.
- Clone your fork locally.
- Set up your development environment:
- We use Go Modules to manage dependencies, so you can develop outside your
$GOPATH
. - Run
make setup
to install required dependencies and developer tools including golangci-lint, which we use to lint our code.
- We use Go Modules to manage dependencies, so you can develop outside your
The following is a short list of commands that can be run in the root of the project directory
- Run
make
to see a list of available targets. - Run
make test
to run all unit tests. - Run
make lint
to validate against our linting rules. - Run
E2E_TAGS=e2e,atlas make e2e-test
will run end-to-end tests against an Atlas instance, please make sure to have setMCLI_*
variables pointing to that instance. - Run
E2E_TAGS=cloudmanager,remote,generic make e2e-test
will run end-to-end tests against a Cloud Manager instance.
Please remember to: (a) have a running automation agent, and (b) set MCLI_* variables to point to your Cloud Manager instance. - Run
make build
to generate a local binary in the./bin
folder.
We provide a git pre-commit hook to format and check the code, to install it run make link-git-hooks
.
We use mockgen to handle mocking in our unit tests.
If you need a new mock please update or add the //go:generate
instruction to the appropriate file.
Please add the following line to your settings.json file :
"go.buildTags": "unit,e2e",
"go.testTags": "unit,e2e"
This will enable compilation for unit and end-to-end tests.
To debug in VSCode, you must create a debug configuration for the command with the required arguments. Run the following commands to create a new launch.json file for the debugger:
touch .vscode/launch.json
Then put the following example configuration into the file. Review and replace the command name and arguments depending on the command you want to debug.
{
"configurations": [
{
"name": "DBuser Create Command",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/atlas",
"env": {},
"args": [
"dbuser",
"create",
"atlasAdmin",
"--username",
"myUser",
"--password",
"123abc"
]
}
]
}
Atlas CLI
uses the Cobra Framework.
Depending on the feature you are building you might choose to:
- Add individual commands to existing groups of commands
- Add a new command group that provides ability to run nested commands under certain prefix
For a command group, we need to create new cobra root command. This command aggregates a number of subcommands that can perform network requests and return results
For example teams
command root provides the main execution point for atlas teams
with subcommands like atlas teams list
Root command links to a number of child commands. Atlas CLI provides a number of patterns for child commands depending on the type of operation performed.
Each new feature might cover typical commands like list
and describe
along with dedicated actions.
For example list command.
It is normal to duplicate existing commands and edit descriptions and methods for your own needs.
Additionally, after adding new command we need to add it to the main CLI root command.
For example please edit ./root/atlas/builder.go
to add your command builder method for Atlas CLI
atlas
has defined a basic structure for individual commands that should be followed.
For an atlas scope newCommand
command, a file internal/cli/scope/new_command.go
should implement:
- A
ScopeNewCommandOpts
struct which handles the different options for the command. - At least a
func (opts *ScopeNewCommandOpts) Run() error
function with the main command logic. - A
func ScopeNewCommandBuilder() *cobra.Command
function to put together the expected cobra definition along with theScopeNewCommandOpts
logic. - A set of documentation fields further described in the section below.
Commands follow a RESTful approach to match the APIs, whenever possible. For that reason, command arguments tend to match the path and query params of the APIs, with the last param being a required argument and the rest handled via flag options. For commands that create or modify complex data structures, the use of configuration files is preferred over flag options.
Tip
During the development of the commands we recommend setting Hidden: true
property to make commands invisible to the end users and documentation.
Important
Commands are executing network requests by using ./internal/store
interface that wraps Atlas Go SDK.
Before adding a command please make sure that your api exists in the GO SDK.
Tip
Atlas CLI provides an experimental generator, make sure to try it out in tools/cli-generator
Atlas CLI use atlas-sdk-go for all backend integration. This SDK is updated automatically based on Atlas OpenAPI file.
Flags are a way to modify the command, also may be called "options". Flags always have a long version with two dashes (--state) but may also have a shortcut with one dash and one letter (-s).
atlas
uses the following types of flags:
--flagName value
: this type of flag passes the value to the command. Examples:--projectId 5efda6aea3f2ed2e7dd6ce05
--booleanFlag
: this flag represents a boolean and it sets the related variable to true when the flag is used, false otherwise. Example:--force
--flagName value1,value2,..,valueN
: you will also find flags that accept a list of values. This type of flag can be very useful to represent data structures as--role roleName1@db,roleName2@db
,--privilege [email protected],[email protected]
, or--key field:type
. As shown in the examples, the standard format used to represent data structures consists of splitting the first value with the second one by at sign@
or colon:
, and the second value with the third one by a full stop.
. We recommend using configuration files for complex data structures that require more than three values. For an example of configuration files, see atlas cluster create.
When in doubt refer to Utility Argument Syntax Conventions
If you are adding a brand-new command, or updating a command that has no doc annotations, please define the following doc structures for the command. For more information on all command structs, see Cobra.
- Add
Use
- (Required) Shows the command and arguments if applicable. Will show up in 'help' output. - Add
Short
- (Required) Briefly describes the command. Will show up in 'help' output. - Add
Example
- (Required) Example of how to use the command. Will show up in 'help' output. - Add
Annotations
- If the command has arguments, annotations should be added. They consist of key/value pairs that describe arguments in the command and are added to the generated documentation. - Add
Long
- Fully describes the command. Will show up in 'help' output.
Furthermore, after adding the necessary structure, ensure that applicable documentation is generated by running make gen-docs
.
- Run
make gen-docs
- This generates the documentation for the introduced command. - Review the PR with the doc team.
We scan our dependencies for vulnerabilities and incompatible licenses using Snyk. To run Snyk locally please follow their CLI reference.
Reviewers, please ensure that the CLA has been signed by referring to the contributors tool (internal link).
For changes that involve user facing copy please include docs-cloud-team
as a reviewer.
Atlas CLI uses atlas-sdk-go for API integration. Go SDK will be automatically updated for the new versions using dependabot. In situations when SDK does new major releases developers need to specify the version explicitly in the go update command. For example:
go get go.mongodb.org/atlas-sdk/v20230501001
Atlas CLI can work with multiple versions of the GO SDK supporting various Resource Versions.
For more info please refer to the SDK documentation and golang documentation
When adding a new major version of the go sdk, the old sdk version dependency will be still present in the go mod files. Atlas CLI developers should update all imports to new major versions and remove old dependencies.
To update simply rename all instances of major version across the repository imports and go.mod files.
e.g v20230201001
=> v20230201002
To update Atlas SDK run:
make update-atlas-sdk
Note
Update mechanism is only needed for major releases. Any other releases will be supported by dependabot.
Important
Command can make import changes to +500 files. Please make sure that you perform update on main branch without any uncommited changes.