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
75bccf9f
Commit
75bccf9f
authored
Apr 27, 2020
by
Spiros Koulouzis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added ingress controller
parent
45e30176
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
59 additions
and
107 deletions
+59
-107
Jenkinsfile
bin/Jenkinsfile
+0
-63
Jenkinsfile_1
bin/Jenkinsfile_1
+0
-34
kubectl_deploy.sh
bin/kubectl_deploy.sh
+4
-0
docker-compose.yml
docker-compose.yml
+8
-0
ingress-controller.yaml
k8s/CONF/ingress-controller.yaml
+32
-0
semaphore-service.yaml
k8s/CONF/semaphore-service.yaml
+8
-3
sure-tosca-service.yaml
k8s/CONF/sure-tosca-service.yaml
+3
-3
workspace.xml
sure_tosca-client_python_stubs/.idea/workspace.xml
+4
-4
No files found.
bin/Jenkinsfile
deleted
100644 → 0
View file @
45e30176
pipeline
{
agent
none
stages
{
stage
(
'Build java-code'
)
{
agent
any
tools
{
maven
"maven-3.6.2"
jdk
"openjdk-11"
}
steps
{
git
branch:
'DRIP_3.0'
,
url:
'https://github.com/skoulouzis/DRIP.git'
sh
"mvn -Dmaven.test.skip=true install"
}
}
stage
(
'Build python-code'
)
{
agent
{
docker
{
image
'python:3.7-buster'
}
}
steps
{
sh
'cd drip-planner && python3.7 -m venv venv && venv/bin/pip3 install -r requirements.txt'
sh
"cd ../"
sh
"cd sure_tosca-flask-server && python3.7 -m venv venv && venv/bin/pip3 install -r requirements.txt && venv/bin/pip3 install -r test-requirements.txt"
}
}
stage
(
'Test java-code'
)
{
agent
any
tools
{
maven
"maven-3.6.2"
jdk
"openjdk-11"
}
steps
{
sh
"mvn test"
}
}
stage
(
'Test python-code'
)
{
agent
{
docker
{
image
'python:3.7-buster'
}
}
steps
{
sh
"cd drip-planner && venv/bin/python3.7 -m unittest discover"
sh
"cd sure_tosca-flask-server && venv/bin/python3.7 -m unittest discover"
}
}
stage
(
'Package java-code'
)
{
agent
any
tools
{
maven
"maven-3.6.2"
jdk
"openjdk-11"
}
steps
{
sh
"cd drip-manager && mvn -Dmaven.test.skip=true install dockerfile:build"
}
}
stage
(
'Package python-code'
)
{
agent
any
steps
{
sh
"cd sure_tosca-flask-server && docker build -t sure-tosca:3.0.0 ."
sh
"cd ../"
sh
"cd drip-planner && docker build -t drip-planner:3.0.0 ."
}
}
}
}
bin/Jenkinsfile_1
deleted
100644 → 0
View file @
45e30176
node {
def app
stage('Clone repository') {
git branch: 'DRIP_3.0', url: 'https://github.com/skoulouzis/DRIP.git'
}
}
node('docker') {
stage('Clone repository on slave') {
git branch: 'DRIP_3.0', url: 'https://github.com/skoulouzis/DRIP.git'
}
stage('Build image') {
/* This builds the actual image; synonymous to
* docker build on the command line */
sh "cd sure_tosca-flask-server"
app = docker.build("sure-tosca/alogo53")
}
stage('Test image') {
app.inside {
sh 'echo "Tests passed"'
}
}
stage('Push image') {
//docker.withRegistry('https://registry.hub.docker.com', 'docker-hub') {
// app.push("${env.BUILD_NUMBER}")
// app.push("latest")
//}
}
}
bin/kubectl_deploy.sh
0 → 100755
View file @
75bccf9f
#!/bin/bash
kubectl create
-f
../k8s/CONF/
kubectl delete
-f
../k8s/CONF/
docker-compose.yml
View file @
75bccf9f
version
:
'
3'
services
:
nginx-proxy
:
image
:
jwilder/nginx-proxy
ports
:
-
"
80:80"
volumes
:
-
/var/run/docker.sock:/tmp/docker.sock:ro
rabbit
:
image
:
rabbitmq:3.8-management
...
...
k8s/CONF/ingress-controller.yaml
0 → 100644
View file @
75bccf9f
apiVersion
:
networking.k8s.io/v1beta1
kind
:
Ingress
metadata
:
annotations
:
kubernetes.io/ingress.class
:
nginx
nginx.ingress.kubernetes.io/rewrite-target
:
/
nginx.ingress.kubernetes.io/ssl-redirect
:
"
true"
nginx.ingress.kubernetes.io/force-ssl-redirect
:
"
true"
nginx.ingress.kubernetes.io/auth-type
:
basic
nginx.ingress.kubernetes.io/auth-secret
:
basic-auth
nginx.ingress.kubernetes.io/auth-realm
:
'
Authentication
Required'
#nginx.ingress.kubernetes.io/auth-url: "https://$host/oauth2/auth"
#nginx.ingress.kubernetes.io/auth-signin: "https://$host/oauth2/start?rd=$escaped_request_uri"
name
:
conf-ingress
spec
:
rules
:
-
host
:
fry.lab.uvalight.net
http
:
paths
:
#- path: /
#backend:
#serviceName: manager
#servicePort: 8080
-
path
:
/semaphore
backend
:
serviceName
:
semaphore
servicePort
:
3000
-
path
:
/sure-tosca
backend
:
serviceName
:
sure-tosca
servicePort
:
8081
k8s/CONF/semaphore-service.yaml
View file @
75bccf9f
...
...
@@ -9,10 +9,15 @@ metadata:
io.kompose.service
:
semaphore
name
:
semaphore
spec
:
type
:
NodePort
#type: NodePort
#ports:
#- port: 3000
#nodePort: 30002
ports
:
-
port
:
3000
nodePort
:
30002
-
name
:
"
3000"
port
:
3000
targetPort
:
3000
selector
:
io.kompose.service
:
semaphore
status
:
...
...
k8s/CONF/sure-tosca-service.yaml
View file @
75bccf9f
...
...
@@ -9,10 +9,10 @@ metadata:
io.kompose.service
:
sure-tosca
name
:
sure-tosca
spec
:
type
:
NodePort
ports
:
-
port
:
8081
nodePort
:
30001
-
name
:
"
8081"
port
:
8081
targetPort
:
8081
selector
:
io.kompose.service
:
sure-tosca
status
:
...
...
sure_tosca-client_python_stubs/.idea/workspace.xml
View file @
75bccf9f
...
...
@@ -2,8 +2,8 @@
<project
version=
"4"
>
<component
name=
"ChangeListManager"
>
<list
default=
"true"
id=
"3f84153d-6ed1-4691-94d6-53105266f15e"
name=
"Default Changelist"
comment=
""
>
<change
beforePath=
"$PROJECT_DIR$/../docker-compose.yml"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/../docker-compose.yml"
afterDir=
"false"
/>
<change
beforePath=
"$PROJECT_DIR$/.idea/workspace.xml"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/.idea/workspace.xml"
afterDir=
"false"
/>
<change
beforePath=
"$PROJECT_DIR$/requirements.txt"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/requirements.txt"
afterDir=
"false"
/>
</list>
<option
name=
"SHOW_DIALOG"
value=
"false"
/>
<option
name=
"HIGHLIGHT_CONFLICTS"
value=
"true"
/>
...
...
@@ -21,7 +21,7 @@
</component>
<component
name=
"PropertiesComponent"
>
<property
name=
"RunOnceActivity.ShowReadmeOnStart"
value=
"true"
/>
<property
name=
"last_opened_file_path"
value=
"$PROJECT_DIR$/../
semaphore-python-client-generated
"
/>
<property
name=
"last_opened_file_path"
value=
"$PROJECT_DIR$/../
../playbooks/install_nfs.yaml
"
/>
<property
name=
"settings.editor.selected.configurable"
value=
"com.jetbrains.python.configuration.PyActiveSdkModuleConfigurable"
/>
</component>
<component
name=
"RunManager"
>
...
...
@@ -59,10 +59,10 @@
<servers
/>
</component>
<component
name=
"WindowStateProjectService"
>
<state
x=
"723"
y=
"257"
width=
"
530"
height=
"598"
key=
"FileChooserDialogImpl"
timestamp=
"1587046856074
"
>
<state
x=
"723"
y=
"257"
width=
"
770"
height=
"700"
key=
"FileChooserDialogImpl"
timestamp=
"1587904825236
"
>
<screen
x=
"67"
y=
"34"
width=
"1853"
height=
"1046"
/>
</state>
<state
x=
"723"
y=
"257"
width=
"
530"
height=
"598"
key=
"FileChooserDialogImpl/67.34.1853.1046@67.34.1853.1046"
timestamp=
"1587046856074
"
/>
<state
x=
"723"
y=
"257"
width=
"
770"
height=
"700"
key=
"FileChooserDialogImpl/67.34.1853.1046@67.34.1853.1046"
timestamp=
"1587904825236
"
/>
<state
width=
"1825"
height=
"255"
key=
"GridCell.Tab.0.bottom"
timestamp=
"1587047773485"
>
<screen
x=
"67"
y=
"34"
width=
"1853"
height=
"1046"
/>
</state>
...
...
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