Skip to content
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

Remove remaining conduit references in codebase #1381

Merged
merged 2 commits into from
Jul 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ and run Linkerd2:

This configuration builds all Linkerd2 components in Docker images, and deploys
them onto Minikube. This setup most closely parallels our recommended production
installation, documented at https://conduit.io/getting-started/.
installation, documented at https://linkerd.io/2/getting-started/.

These commands assume a working
[Minikube](https://github.com/kubernetes/minikube) environment.
Expand All @@ -135,7 +135,7 @@ bin/linkerd check --expected-version $(bin/root-tag)
bin/linkerd dashboard

# install the demo app
curl https://raw.githubusercontent.com/BuoyantIO/emojivoto/master/emojivoto.yml | bin/linkerd inject - | kubectl apply -f -
curl https://run.linkerd.io/emojivoto.yml | bin/linkerd inject - | kubectl apply -f -

# view demo app
minikube -n emojivoto service web-svc
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,6 @@ Describe the modifications you've made.
Describe the testing you've done to validate your change. Performance-related
changes should include before- and after- benchmark results.

[discourse]: https://discourse.linkerd.io/c/conduit
[discourse]: https://discourse.linkerd.io/c/linkerd2
[issue]: https://github.com/linkerd/linkerd2/issues/new
[slack]: http://slack.linkerd.io/
23 changes: 7 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@

:balloon: Welcome to Linkerd2! :wave:

Note: this project is currently in the middle of a migration from the old name
(Conduit) to the new name (Linkerd2). While this transition is ongoing, there
will be references to Conduit that don't make a lot of sense. Not to worry,
we're working on it! For more information, check out the
[announcement][announcement].

Linkerd2 is an ultralight *service mesh*, designed to make modern applications
safe and sane by transparently adding service discovery, load balancing, failure
handling, instrumentation, and routing to all inter-service communication.
Expand Down Expand Up @@ -41,17 +35,17 @@ Linkerd is hosted by the Cloud Native Computing Foundation ([CNCF][cncf]).
mailing list.
* [Announcements mailing list][linkerd-announce]: Linkerd2 announcements only
(low volume).
* Follow [@runconduit][twitter] on Twitter.
* Follow [@linkerd][twitter] on Twitter.
* Join the #linkerd2 channel on the [Linkerd Slack][slack].

## Documentation

View [Linkerd2 docs][linkerd-docs] for more a more comprehensive guide to
getting started, or view the full [Linkerd2 roadmap][roadmap].
getting started, or use the instructions below.

## Getting started with Linkerd2

1. Install the Linkerd2 CLI with `curl https://run.conduit.io/install | sh `.
1. Install the Linkerd2 CLI with `curl https://run.linkerd.io/install | sh`.

1. Add `$HOME/.linkerd2/bin` to your `PATH`.

Expand Down Expand Up @@ -102,25 +96,22 @@ CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.

<!-- refs -->
[announcement]: https://blog.conduit.io/2018/07/06/conduit-0-5-and-the-future/
[ci]: https://travis-ci.org/linkerd/linkerd2
[ci-badge]: https://travis-ci.org/linkerd/linkerd2.svg?branch=master
[cncf]: https://www.cncf.io/
[coc]: https://github.com/linkerd/linkerd/wiki/Linkerd-code-of-conduct
[linkerd-announce]: https://groups.google.com/forum/#!forum/conduit-announce
[linkerd-demo]: https://conduit.io/getting-started/#install-the-demo-app
[linkerd-demo]: https://linkerd.io/2/getting-started/#step-3-install-the-demo-app
[linkerd-dev]: https://groups.google.com/forum/#!forum/conduit-dev
[linkerd-inject]: https://conduit.io/adding-your-service/
[linkerd-docs]: https://conduit.io/docs/
[linkerd-inject]: https://linkerd.io/2/adding-your-service/
[linkerd-docs]: https://linkerd.io/2/overview/
[linkerd-users]: https://groups.google.com/forum/#!forum/conduit-users
[golang]: https://golang.org/
[license-badge]: https://img.shields.io/github/license/linkerd/linkerd.svg
[logo]: https://user-images.githubusercontent.com/9226/33582867-3e646e02-d90c-11e7-85a2-2e238737e859.png
[proxy]: https://github.com/linkerd/linkerd2-proxy
[proxy-api]: https://github.com/linkerd/linkerd2-proxy-api
[roadmap]: https://conduit.io/roadmap
[releases]: https://github.com/linkerd/linkerd2/releases
[rust]: https://www.rust-lang.org/
[slack-badge]: http://slack.linkerd.io/badge.svg
[slack]: http://slack.linkerd.io
[twitter]: https://twitter.com/runconduit/
[twitter]: https://twitter.com/linkerd
2 changes: 1 addition & 1 deletion cli/cmd/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const (
okStatus = "[ok]"
failStatus = "[FAIL]"
errorStatus = "[ERROR]"
versionCheckURL = "https://versioncheck.conduit.io/version.json"
versionCheckURL = "https://versioncheck.linkerd.io/version.json"
)

type checkOptions struct {
Expand Down
6 changes: 3 additions & 3 deletions web/app/js/components/Sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class Sidebar extends React.Component {
}
this.setState({ pendingRequests: true });

let versionUrl = `https://versioncheck.conduit.io/version.json?version=${this.props.releaseVersion}?uuid=${this.props.uuid}`;
let versionUrl = `https://versioncheck.linkerd.io/version.json?version=${this.props.releaseVersion}?uuid=${this.props.uuid}`;
this.api.setCurrentRequests([
ApiHelpers("").fetch(versionUrl),
this.api.fetchMetrics(this.api.urlsForResource("namespace"))
Expand Down Expand Up @@ -203,15 +203,15 @@ class Sidebar extends React.Component {
</Menu.SubMenu>

<Menu.Item className="sidebar-menu-item" key="/docs">
<Link to="https://conduit.io/docs/" target="_blank">
<Link to="https://linkerd.io/2/overview/" target="_blank">
<Icon type="file-text" />
<span>Documentation</span>
</Link>
</Menu.Item>

{ this.state.isLatest ? null : (
<Menu.Item className="sidebar-menu-item" key="/update">
<Link to="https://versioncheck.conduit.io/update" target="_blank">
<Link to="https://versioncheck.linkerd.io/update" target="_blank">
<Icon type="exclamation-circle-o" className="update" />
<span>Update {this.props.productName}</span>
</Link>
Expand Down
2 changes: 1 addition & 1 deletion web/app/js/components/SocialLinks.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default class SocialLinks extends React.Component {
<div className="social-links">
<Link target="_blank" to="https://github.com/linkerd/linkerd2"><Github /></Link>
<Link target="_blank" to="https://slack.linkerd.io/"><Slack /></Link>
<Link target="_blank" to="https://twitter.com/runconduit"><Twitter /></Link>
<Link target="_blank" to="https://twitter.com/linkerd"><Twitter /></Link>
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion web/app/js/components/Version.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Version extends React.Component {
<div>
A new version ({latestVersion}) is available<br />
<Link
to="https://versioncheck.conduit.io/update"
to="https://versioncheck.linkerd.io/update"
className="button primary"
target="_blank">
Update Now
Expand Down