mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
Draft for Kubernetes support (#138)
Fixes #64 * Draft for Kubernetes support * fix image name * Update kubernetes.md * Basic outline of kubernetes howto both quickstart and production
This commit is contained in:
committed by
Seif Lotfy سيف لطفي
parent
3697fb4ca5
commit
154df15e88
17
docs/kubernetes-production/postgresql-deployment.yaml
Normal file
17
docs/kubernetes-production/postgresql-deployment.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
apiVersion: extensions/v1beta1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: postgresql-master
|
||||
spec:
|
||||
replicas: 1
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: postgresql
|
||||
role: datastore
|
||||
spec:
|
||||
containers:
|
||||
- name: functions-postgresql
|
||||
image: postgres
|
||||
ports:
|
||||
- containerPort: 5432
|
||||
Reference in New Issue
Block a user