-
Notifications
You must be signed in to change notification settings - Fork 1.8k
README: fix typos and remove redundancy #128
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
README: fix typos and remove redundancy #128
Conversation
README.md
Outdated
``` | ||
|
||
## Creating a new project | ||
This should install the CLI binary `operator-sdk` at `$GOPATH/bin`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, I think go install
always installs the binary under $GOPATH/bin
? correct me if I am wrong.
If that's the case, we probably should say This installs
to be more certain.
Also I think we should be have a tone with certainty in our readme; hence avoid any phrase meaning likely or probable.
README.md
Outdated
``` | ||
|
||
This generates a project repo `memcached-operator`, a custom resource with APIVersion `cache.example.com/v1apha1` and Kind `Memcached`, and an example operator that watches all deployments in the same namespace and logs deployment names. | ||
This creates the project directory `memcached-operator`, and generates the API pkg tree for a custom resource with APIVersion `cache.example.com/v1apha1` and Kind `Memcached`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
memcached-operator, and
-> memcached-operator and
?
No ,
?
README.md
Outdated
At this point we are ready to build and run a functional operator. | ||
|
||
The default operator behaviour as seen in the entrypoint `cmd/memcached-operator/main.go` is to watch for Deployments in the default namespace and print out their names. | ||
The default operator behaviour defined in the entrypoint `cmd/memcached-operator/main.go` is to watch for Deployments in the default namespace and print out their names. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also change entrypoint
-> entry point
?
``` | ||
|
||
Check memcached-operator pod’s log: | ||
Check the memcached-operator pod’s log: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggest to change
The memcached-operator would be up and running:
at line 111
to
Verify that the memcached-operator is up and running:
Fixed. |
lgtm |
Fixed a few typos, changed the phrasing in a few places to clarify acronyms, and removed repeated explanations.
/cc @fanminshi