Stage service deployments

This commit is contained in:
Jim Nicholson 2021-10-30 00:30:10 -07:00
parent 7808d0a0c4
commit be6cf9273b
3 changed files with 14 additions and 12 deletions

12
gitea-service.yaml Normal file
View File

@ -0,0 +1,12 @@
---
apiVersion: v1
kind: Service
metadata:
name: gitea
namespace: gitea
spec:
selector:
app: gitea
ports:
- protocol: TCP
port: 3000

View File

@ -15,6 +15,8 @@ resources:
- storage.yaml
- configuration.yaml
- postgres-deployment.yaml
- postgres-service.yaml
- gitea-deployment.yaml
- gitea-service.yaml
# - service.yaml
# - ingress.yaml

View File

@ -14,15 +14,3 @@
selector:
app: postgres
clusterIP: None
---
apiVersion: v1
kind: Service
metadata:
name: gitea
namespace: gitea
spec:
selector:
app: gitea
ports:
- protocol: TCP
port: 3000