Kubernetes powered PaaS that runs in your own cloud. https://porter.run

Alexander Belanger 2cca19a440 add github action to deploy endpoint 5 years ago
.github ee4a0556cc Update staging.yaml 5 years ago
build e013a3ff6e update release builds for cgo 5 years ago
cli 863a8b2fa1 update token login w/ better error msg 5 years ago
cmd 974617f48c add logs to key rotation 5 years ago
dashboard 93590c0a85 token login fixes and checkout code 5 years ago
docker 1ccae4a9a6 increase nginx proxy time out. fixes #244 5 years ago
docs 04d6a97425 devnote 5 years ago
helm 05d3ffdb4c porter helm chart 5 years ago
internal 2cca19a440 add github action to deploy endpoint 5 years ago
scripts b133d644f8 portersvr with ldflag and proper overwrite 5 years ago
server 2cca19a440 add github action to deploy endpoint 5 years ago
.air.toml f1ac0e4b69 cli major update 5 years ago
.dockerignore d7b83fb445 onboarding with default sqlite 5 years ago
.gitignore a397550757 fixes #253 5 years ago
LICENSE 1f483861ca add MIT license 5 years ago
README.md f22f2005b0 Update README.md 5 years ago
docker-compose.dev.yaml a5c69a1bda stream ephemeral provisioning logs (no XACK) 5 years ago
go.mod d02285ca54 jwt token implementation 5 years ago
go.sum d02285ca54 jwt token implementation 5 years ago
package-lock.json 510a93729a added github button to register 5 years ago
staging.sh f721859ed6 provisioner WIP 5 years ago

README.md

Porter

MIT License Go Report Card Discord

Porter is a Kubernetes-powered PaaS that runs in your own cloud provider. Porter brings the Heroku experience to Kubernetes without compromising its flexibility. Get started on Porter without the overhead of DevOps and fully customize your infra later when you need to.

Provisioning View

Community and Updates

For help, questions, or if you just want a place to hang out, join our Discord community.

To keep updated on our progress, please watch the repo for new releases (Watch > Custom > Releases) and follow us on Twitter!

Why Porter?

A PaaS that grows with your applications

A traditional PaaS like Heroku is great for minimizing unnecessary DevOps work but doesn't offer enough flexibility as your applications grow. Custom network rules, resource constraints, and cost are common reasons developers move their applications off Heroku beyond a certain scale.

Porter brings the simplicity of a traditional PaaS to your own cloud provider while preserving the configurability of Kubernetes. Porter is built on top of a popular Kubernetes package manager helm and is compatible with standard Kubernetes management tools like kubectl, preparing your infra for mature DevOps work from day one.

image

Features

Basics

  • One-click provisioning of a Kubernetes cluster in your own cloud console
    • ✅ AWS
    • ✅ GCP
    • ✅ Digital Ocean
  • Simple deploy of any public or private Docker image
  • Heroku-like GUI to monitor application status, logs, and history
  • Marketplace for one click add-ons (e.g. MongoDB, Redis, PostgreSQL)
  • Application rollback to previously deployed versions
  • Deploy webhooks that can be triggered from CI/CD pipelines
  • Native CI/CD with buildpacks for non-Dockerized apps (Coming Soon)

DevOps Mode

For those who are familiar with Kubernetes and Helm:

  • Connect to existing Kubernetes clusters that are not provisioned by Porter
  • Visualize, deploy, and configure Helm charts via the GUI
  • User-generated form overlays for managing values.yaml
  • In-depth view of releases, including revision histories and component graphs
  • Rollback/update of existing releases, including editing of raw values.yaml

Graph View

Docs

Below are instructions for a quickstart. For full documentation, visit our official Docs page.

CLI Installation

Mac

Run the following command to grab the latest binary:

{
name=$(curl -s https://api.github.com/repos/porter-dev/porter/releases/latest | grep "browser_download_url.*/porter_.*_Darwin_x86_64\.zip" | cut -d ":" -f 2,3 | tr -d \")
name=$(basename $name)
curl -L https://github.com/porter-dev/porter/releases/latest/download/$name --output $name
unzip -a $name
rm $name
}

Then move the file into your bin:

chmod +x ./porter
sudo mv ./porter /usr/local/bin/porter

For Linux and Windows installation, see our Docs.

Getting Started

  1. Sign up and log into Porter Dashboard.

  2. Create a Project and select a cloud provider you want to provision a Kubernetes cluster in (AWS, GCP, DO). It is also possible to link up your own Kubernetes cluster.

  3. Put in your credentials, then Porter will automatically provision a cluster and an image registry in your own cloud account.

  4. Build and push your Docker image, or connect your git repository if your application is not dockerized.

  5. From the Templates tab on the Dashboard, select the Docker template. Click on the image you have just pushed, configure the port, then hit deploy.

Want to Help?

We welcome all contributions. Submit an issue or a pull request to help us improve Porter! porter