Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CONF
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UvA
CONF
Commits
199e1025
Commit
199e1025
authored
Apr 28, 2020
by
Spiros Koulouzis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added ingress controller
parent
75bccf9f
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
30 additions
and
11 deletions
+30
-11
kubectl_deploy.sh
bin/kubectl_deploy.sh
+3
-0
deployer-deployment.yaml
k8s/CONF/deployer-deployment.yaml
+1
-0
ingress-controller.yaml
k8s/CONF/ingress-controller.yaml
+9
-3
manager-deployment.yaml
k8s/CONF/manager-deployment.yaml
+1
-0
manager-service.yaml
k8s/CONF/manager-service.yaml
+4
-3
mongo-deployment.yaml
k8s/CONF/mongo-deployment.yaml
+1
-0
mongo-service.yaml
k8s/CONF/mongo-service.yaml
+1
-0
mysql-deployment.yaml
k8s/CONF/mysql-deployment.yaml
+1
-0
mysql-service.yaml
k8s/CONF/mysql-service.yaml
+1
-0
planner-deployment.yaml
k8s/CONF/planner-deployment.yaml
+1
-0
provisioner-deployment.yaml
k8s/CONF/provisioner-deployment.yaml
+1
-0
rabbit-deployment.yaml
k8s/CONF/rabbit-deployment.yaml
+1
-1
rabbit-service.yaml
k8s/CONF/rabbit-service.yaml
+1
-0
semaphore-deployment.yaml
k8s/CONF/semaphore-deployment.yaml
+1
-0
semaphore-service.yaml
k8s/CONF/semaphore-service.yaml
+1
-4
sure-tosca-deployment.yaml
k8s/CONF/sure-tosca-deployment.yaml
+1
-0
sure-tosca-service.yaml
k8s/CONF/sure-tosca-service.yaml
+1
-0
No files found.
bin/kubectl_deploy.sh
View file @
199e1025
#!/bin/bash
kubectl create
-f
../k8s/CONF/
sleep
5
kubectl get all
kubectl delete
-f
../k8s/CONF/
k8s/CONF/deployer-deployment.yaml
View file @
199e1025
apiVersion
:
apps/v1
kind
:
Deployment
metadata
:
#namespace: conf
annotations
:
kompose.cmd
:
kompose convert
kompose.version
:
1.16.0 (0c01309)
...
...
k8s/CONF/ingress-controller.yaml
View file @
199e1025
apiVersion
:
networking.k8s.io/v1beta1
kind
:
Ingress
metadata
:
#namespace: conf
annotations
:
kubernetes.io/ingress.class
:
nginx
nginx.ingress.kubernetes.io/rewrite-target
:
/
...
...
@@ -21,12 +22,17 @@ spec:
#backend:
#serviceName: manager
#servicePort: 8080
-
path
:
/semaphore
-
path
:
/
conf/
semaphore
backend
:
serviceName
:
semaphore
servicePort
:
3000
-
path
:
/sure-tosca
-
path
:
/
conf/
sure-tosca
backend
:
serviceName
:
sure-tosca
servicePort
:
8081
servicePort
:
8081
-
path
:
/conf/manager
backend
:
serviceName
:
manager
servicePort
:
8080
k8s/CONF/manager-deployment.yaml
View file @
199e1025
apiVersion
:
apps/v1
kind
:
Deployment
metadata
:
namespace
:
conf
annotations
:
kompose.cmd
:
kompose convert
kompose.version
:
1.16.0 (0c01309)
...
...
k8s/CONF/manager-service.yaml
View file @
199e1025
apiVersion
:
v1
kind
:
Service
metadata
:
#namespace: conf
annotations
:
kompose.cmd
:
kompose convert
kompose.version
:
1.16.0 (0c01309)
...
...
@@ -9,10 +10,10 @@ metadata:
io.kompose.service
:
manager
name
:
manager
spec
:
type
:
NodePort
ports
:
-
port
:
8080
nodePort
:
30000
-
name
:
"
8080"
port
:
8080
targetPort
:
8080
selector
:
io.kompose.service
:
manager
status
:
...
...
k8s/CONF/mongo-deployment.yaml
View file @
199e1025
apiVersion
:
apps/v1
kind
:
Deployment
metadata
:
#namespace: conf
annotations
:
kompose.cmd
:
kompose convert
kompose.version
:
1.16.0 (0c01309)
...
...
k8s/CONF/mongo-service.yaml
View file @
199e1025
apiVersion
:
v1
kind
:
Service
metadata
:
#namespace: conf
annotations
:
kompose.cmd
:
kompose --file docker-compose.yml convert
kompose.version
:
1.16.0 (0c01309)
...
...
k8s/CONF/mysql-deployment.yaml
View file @
199e1025
apiVersion
:
apps/v1
kind
:
Deployment
metadata
:
#namespace: conf
annotations
:
kompose.cmd
:
kompose convert
kompose.version
:
1.16.0 (0c01309)
...
...
k8s/CONF/mysql-service.yaml
View file @
199e1025
apiVersion
:
v1
kind
:
Service
metadata
:
#namespace: conf
annotations
:
kompose.cmd
:
kompose --file docker-compose.yml convert
kompose.version
:
1.16.0 (0c01309)
...
...
k8s/CONF/planner-deployment.yaml
View file @
199e1025
apiVersion
:
apps/v1
kind
:
Deployment
metadata
:
#namespace: conf
annotations
:
kompose.cmd
:
kompose convert
kompose.version
:
1.16.0 (0c01309)
...
...
k8s/CONF/provisioner-deployment.yaml
View file @
199e1025
apiVersion
:
apps/v1
kind
:
Deployment
metadata
:
#namespace: conf
annotations
:
kompose.cmd
:
kompose convert
kompose.version
:
1.16.0 (0c01309)
...
...
k8s/CONF/rabbit-deployment.yaml
View file @
199e1025
apiVersion
:
apps/v1
kind
:
Deployment
metadata
:
#namespace: conf
annotations
:
kompose.cmd
:
kompose convert
kompose.version
:
1.16.0 (0c01309)
...
...
@@ -23,7 +24,6 @@ spec:
containers
:
-
image
:
rabbitmq:3.8-management
name
:
rabbit
imagePullPolicy
:
Always
resources
:
{}
restartPolicy
:
Always
status
:
{}
k8s/CONF/rabbit-service.yaml
View file @
199e1025
apiVersion
:
v1
kind
:
Service
metadata
:
#namespace: conf
annotations
:
kompose.cmd
:
kompose --file docker-compose.yml convert
kompose.version
:
1.16.0 (0c01309)
...
...
k8s/CONF/semaphore-deployment.yaml
View file @
199e1025
apiVersion
:
apps/v1
kind
:
Deployment
metadata
:
#namespace: conf
annotations
:
kompose.cmd
:
kompose convert
kompose.version
:
1.16.0 (0c01309)
...
...
k8s/CONF/semaphore-service.yaml
View file @
199e1025
apiVersion
:
v1
kind
:
Service
metadata
:
#namespace: conf
annotations
:
kompose.cmd
:
kompose convert
kompose.version
:
1.16.0 (0c01309)
...
...
@@ -9,10 +10,6 @@ metadata:
io.kompose.service
:
semaphore
name
:
semaphore
spec
:
#type: NodePort
#ports:
#- port: 3000
#nodePort: 30002
ports
:
-
name
:
"
3000"
port
:
3000
...
...
k8s/CONF/sure-tosca-deployment.yaml
View file @
199e1025
apiVersion
:
apps/v1
kind
:
Deployment
metadata
:
#namespace: conf
annotations
:
kompose.cmd
:
kompose convert
kompose.version
:
1.16.0 (0c01309)
...
...
k8s/CONF/sure-tosca-service.yaml
View file @
199e1025
apiVersion
:
v1
kind
:
Service
metadata
:
#namespace: conf
annotations
:
kompose.cmd
:
kompose convert
kompose.version
:
1.16.0 (0c01309)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment