Ultralight, security-first service mesh for Kubernetes. Main repo for Linkerd 2.x.
Go to file
Oliver Gould 6a0936e699
Remove proxy/Dockerfile-deps (#279)
The current proxy Dockerfile configuration does not cache dependencies
well, which can increase build times substantially.

By carefully splitting proxy/Dockerfile into several stages that mock
parts of the project, dependencies may be built and cached in Docker
such that changes to the proxy only require building the conduit-proxy
crate.

Furthermore, proxy/Dockerfile now runs the proxy's tests before
producing an artifact, unless the ` PROXY_SKIP_TESTS` build-arg is set
and not-empty.

The `PROXY_UNOPTIMIZED` build-arg has been added to support quicker,
debug-friendly builds.
2018-02-06 13:01:38 -08:00
.github Add a newline to dco.yml (#254) 2018-02-01 15:16:02 -08:00
bin Remove proxy/Dockerfile-deps (#279) 2018-02-06 13:01:38 -08:00
cli Add --url option to skip browser when opening dashboard (#281) 2018-02-06 14:07:55 -05:00
controller Remove hardcoded port and shared state for http test (#282) 2018-02-06 13:48:14 -05:00
pkg Replace shelling out with kubernetes proxy (#249) 2018-02-02 10:31:59 -08:00
proto Adopt external tower-grpc and tower-h2 deps #225) 2018-02-01 11:57:02 -08:00
proxy Remove proxy/Dockerfile-deps (#279) 2018-02-06 13:01:38 -08:00
proxy-init Replace shelling out with kubernetes proxy (#249) 2018-02-02 10:31:59 -08:00
web DeploymentsList: Replace "least healthy" with "most active" deployments (#277) 2018-02-06 11:35:57 -08:00
.dockerignore Introducing Conduit, the ultralight service mesh 2017-12-05 00:24:55 +00:00
.editorconfig Add links to each deployment name in the Conduit dashboard (#44) 2017-12-19 15:40:24 -08:00
.gcp.json.enc Fix docker-build stage in CI (#21) 2017-12-08 00:52:06 -06:00
.gitattributes Introducing Conduit, the ultralight service mesh 2017-12-05 00:24:55 +00:00
.gitignore Allow bin/dep wrapper script for dep to work on Windows. (#271) 2018-02-05 09:24:18 -10:00
.prometheus.dev.yml Introducing Conduit, the ultralight service mesh 2017-12-05 00:24:55 +00:00
.travis.yml Remove proxy/Dockerfile-deps (#279) 2018-02-06 13:01:38 -08:00
BUILD.md Remove proxy/Dockerfile-deps (#279) 2018-02-06 13:01:38 -08:00
CHANGES.md Prepare for v0.2.0 release (#248) 2018-01-31 15:39:48 -08:00
CONTRIBUTING.md Add contributing doc and DCO file (#88) 2017-12-22 14:54:27 -08:00
Cargo.lock Move the Rust gRPC bindings to a dedicated crate (#275) 2018-02-06 10:31:48 -08:00
Cargo.toml Move the Rust gRPC bindings to a dedicated crate (#275) 2018-02-06 10:31:48 -08:00
DCO Add contributing doc and DCO file (#88) 2017-12-22 14:54:27 -08:00
Dockerfile-base Introducing Conduit, the ultralight service mesh 2017-12-05 00:24:55 +00:00
Dockerfile-go-deps Add dep wrapper script to ensure consistent version of dep is used (#253) 2018-02-01 16:09:05 -08:00
Gopkg.lock Replace shelling out with kubernetes proxy (#249) 2018-02-02 10:31:59 -08:00
Gopkg.toml Replace shelling out with kubernetes proxy (#249) 2018-02-02 10:31:59 -08:00
LICENSE Introducing Conduit, the ultralight service mesh 2017-12-05 00:24:55 +00:00
README.md README update to 2018 (#233) 2018-01-30 10:47:19 -08:00
docker-compose.yml Set conduit version to match conduit docker tags (#208) 2018-01-26 11:43:45 -08:00

README.md

conduit

Build Status GitHub license Slack Status

🎈 Welcome to Conduit! 👋

Conduit is an ultralight service mesh for Kubernetes from the makers of Linkerd. It features a native proxy, written in Rust, that boasts the performance of C without all the heartbleed.

Conduit is experimental. It is capable of proxying all TCP traffic, and reporting top-line metrics (success rates, latencies, etc) for all HTTP, HTTP/2, and gRPC traffic. It currently does not work with websockets or with HTTP tunneling--see the --skip-outbound-ports flag for how to exclude these types of traffic.

Follow our progress towards production-readiness here and on Twitter.

Documentation

View Conduit docs for more a more comprehensive guide to getting started.

Getting started with Conduit

  1. Install the Conduit CLI curl https://run.conduit.io/install | sh

  2. Copy /Users/username/.conduit/bin/conduit into your PATH

  3. Run conduit install | kubectl apply -f - to install Conduit

  4. Check to make sure you're running the latest version of Conduit with conduit version

  5. Open a local version of the Conduit controller with conduit dashboard

  6. (Optional) To install a demo application for your Conduit instance, visit this section on Conduit docs

Working in this repo

BUILD.md includes general information on how to work in this repo.

Code of Conduct

This project is for everyone. We ask that our users and contributors take a few minutes to review our code of conduct.

License

Copyright 2018, Buoyant Inc. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.