All Projects → deis → postgres

deis / postgres

Licence: MIT license
A PostgreSQL database used by Deis Workflow.

Programming Languages

shell
77523 projects
python
139335 projects - #7 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to postgres

logger
In-memory log buffer used by Deis Workflow.
Stars: ✭ 17 (-54.05%)
Mutual labels:  k8s, deis-workflow, unsupported
minio
Minio Object Storage in Kubernetes, used by Deis Workflow.
Stars: ✭ 51 (+37.84%)
Mutual labels:  k8s, deis-workflow, unsupported
Quiz
Example real time quiz application with .NET Core, React, DDD, Event Sourcing, Docker and built-in infrastructure for CI/CD with k8s, jenkins and helm
Stars: ✭ 100 (+170.27%)
Mutual labels:  postgres, k8s
nodejs-with-postgres-api-example
k8s course example - node.js app with Postgres, Hapi.js and Swagger
Stars: ✭ 59 (+59.46%)
Mutual labels:  postgres, k8s
dockerbuilder
Deis dockerbuilder builds your app from a Dockerfile inside a Kubernetes pod, used by Deis Workflow.
Stars: ✭ 17 (-54.05%)
Mutual labels:  deis-workflow, unsupported
builder
Git server and application builder for Deis Workflow
Stars: ✭ 40 (+8.11%)
Mutual labels:  deis-workflow, unsupported
pg migrate
Manage postgres schema, triggers, procedures, and views
Stars: ✭ 25 (-32.43%)
Mutual labels:  postgres
k8scc
# K8S Crash Course
Stars: ✭ 16 (-56.76%)
Mutual labels:  k8s
terraform-aws-druid
Terraform module to deploy Apache Druid in Kubernetes
Stars: ✭ 16 (-56.76%)
Mutual labels:  postgres
k8s-graph
Visualize your Kubernetes (k8s) cluster
Stars: ✭ 23 (-37.84%)
Mutual labels:  k8s
Data-Engineering-Projects
Personal Data Engineering Projects
Stars: ✭ 167 (+351.35%)
Mutual labels:  postgres
Database-Web-API
Dynamically generate RESTful APIs from the contents of a database table. Provides JSON, XML, and HTML. Supports most popular databases
Stars: ✭ 37 (+0%)
Mutual labels:  postgres
libpq.framework
An XCode project to compile your own libpq.framework for iOS 11.x
Stars: ✭ 27 (-27.03%)
Mutual labels:  postgres
wait-for-pg
Check if PostgreSQL database is ready
Stars: ✭ 22 (-40.54%)
Mutual labels:  postgres
dcos-k8s-rust-skaffold-demo
A demo of pipelining Rust application development to Kubernetes on DC/OS with Skaffold.
Stars: ✭ 40 (+8.11%)
Mutual labels:  k8s
docker-postgresql-pro-1c
Dockerfile для сборки PostgreSQL под 1С:Предприятие 8
Stars: ✭ 27 (-27.03%)
Mutual labels:  postgres
ratel-doc
Kubernetes Dashboard 一键式 Kubernetes多集群资源管理平台 k8s 管理平台
Stars: ✭ 153 (+313.51%)
Mutual labels:  k8s
docpad-skeleton-nodechat
Node Chat, built using Socket.io, DocPad, Backbone.js and Twitter Bootstrap
Stars: ✭ 35 (-5.41%)
Mutual labels:  unsupported
k8s note
k8s学习笔记
Stars: ✭ 27 (-27.03%)
Mutual labels:  k8s
Commando
[DEPRECATED] ⚫ Commando Discord bot built on discord.js-commando.
Stars: ✭ 78 (+110.81%)
Mutual labels:  postgres
Deis Workflow is no longer maintained.
Please read the announcement for more detail.
09/07/2017 Deis Workflow v2.18 final release before entering maintenance mode
03/01/2018 End of Workflow maintenance: critical patches no longer merged
Hephy is a fork of Workflow that is actively developed and accepts code contributions.

Deis Postgres

Build Status Docker Repository on Quay

Deis (pronounced DAY-iss) Workflow is an open source Platform as a Service (PaaS) that adds a developer-friendly layer to any Kubernetes cluster, making it easy to deploy and manage applications on your own servers.

For more information about the Deis Workflow, please visit the main project page at https://github.com/deis/workflow.

We welcome your input! If you have feedback, please submit an issue. If you'd like to participate in development, please read the "Development" section below and submit a pull request.

About

This component is a PostgreSQL database for use in Kubernetes. It builds on the official postgres Docker image. While it's intended for use inside of the Deis Workflow open source PaaS, it's flexible enough to be used as a standalone pod on any Kubernetes cluster or even as a standalone Docker container.

Development

The Deis project welcomes contributions from all developers. The high level process for development matches many other open source projects. See below for an outline.

  • Fork this repository
  • Make your changes
  • Submit a pull request (PR) to this repository with your changes, and unit tests whenever possible
  • If your PR fixes any issues, make sure you write Fixes #1234 in your PR description (where #1234 is the number of the issue you're closing)
  • The Deis core contributors will review your code. After each of them sign off on your code, they'll label your PR with LGTM1 and LGTM2 (respectively). Once that happens, a contributor will merge it

Prerequisites

In order to develop and test this component in a Deis cluster, you'll need the following:

  • GNU Make
  • Docker installed, configured and running
  • A working Kubernetes cluster and kubectl installed and configured to talk to the cluster
  • If you don't have this setup, please see the Kubernetes documentation

Testing Your Code

Once you have all the aforementioned prerequisites, you are ready to start writing code. Once you've finished building a new feature or fixed a bug, please write a unit or integration test for it if possible. See an existing test for an example test.

If your feature or bugfix doesn't easily lend itself to unit/integration testing, you may need to add tests at a higher level. Please consider adding a test to our end-to-end test suite in that case. If you do, please reference the end-to-end test pull request in your pull request for this repository.

Dogfooding

Finally, we encourage you to dogfood this component while you're writing code on it. To do so, you'll need to build and push Docker images with your changes.

This project has a Makefile that makes these tasks significantly easier. It requires the following environment variables to be set:

  • DEIS_REGISTRY - A Docker registry that you have push access to and your Kubernetes cluster can pull from
    • If this is Docker Hub, leave this variable empty
    • Otherwise, ensure it has a trailing /. For example, if you're using Quay.io, use quay.io/
  • IMAGE_PREFIX - The organization in the Docker repository. This defaults to deis, but if you don't have access to that organization, set this to one you have push access to.
  • SHORT_NAME (optional) - The name of the image. This defaults to postgres
  • VERSION (optional) - The tag of the Docker image. This defaults to the current Git SHA (the output of git rev-parse --short HEAD)

Assuming you have these variables set correctly, run make docker-build to build the new image, and make docker-push to push it. Here is an example command that would push to quay.io/arschles/postgres:devel:

export DEIS_REGISTRY=quay.io/
export IMAGE_PREFIX=arschles
export VERSION=devel
make docker-build docker-push

Note that you'll have to push your image to a Docker repository (make docker-push) in order for your Kubernetes cluster to pull the image. This is important for testing in your cluster.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].