envoy-xds-controller

A Kubernetes-native control plane for Envoy proxies that provides dynamic configuration management through the xDS API.

Description

Envoy xDS Controller is a Kubernetes controller that manages Envoy proxy configurations through the xDS API. It allows defining Envoy configurations as Kubernetes Custom Resources (CRs) and automatically transforms them into Envoy configurations, which are delivered to proxies via the xDS protocol in real-time.

Key features:

Documentation

Document Description
Overview Project overview and concepts
Architecture Internal architecture and components
xDS Server xDS implementation details
Configuration Configuration options
Templates VirtualServiceTemplate usage
TLS TLS configuration
Deployment Deployment guide
Development Development setup
Testing Testing guide
Troubleshooting Common issues and solutions

Getting Started

Prerequisites

Installation

helm repo add envoy-xds-controller https://kaasops.github.io/envoy-xds-controller
helm install envoy-xds-controller envoy-xds-controller/envoy-xds-controller

With custom values:

helm install envoy-xds-controller envoy-xds-controller/envoy-xds-controller \
  --set image.tag=latest \
  --set ui.enabled=true

Uninstall

helm uninstall envoy-xds-controller

Contributing

We welcome contributions to the Envoy xDS Controller project! Here’s how you can contribute:

  1. Code Contributions:
    • Fork the repository
    • Create a feature branch (git checkout -b feature/amazing-feature)
    • Commit your changes (git commit -m 'Add some amazing feature')
    • Push to the branch (git push origin feature/amazing-feature)
    • Open a Pull Request
  2. Bug Reports and Feature Requests:
    • Use the GitHub issue tracker to report bugs or request features
  3. Development Environment:
  4. Testing:
    • Add tests for new features
    • Run existing tests with make test
    • Run end-to-end tests with make test-e2e

NOTE: Run make help for more information on all potential make targets

More information can be found via the Kubebuilder Documentation

License

Copyright 2024.

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file 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.