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
aae715af
Commit
aae715af
authored
Jan 26, 2020
by
Spiros Koulouzis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add simple start script
parent
bd083b6a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
57 additions
and
0 deletions
+57
-0
mongo.yaml
K8s/mongo.yaml
+27
-0
rabbitmq.yml
K8s/rabbitmq.yml
+19
-0
simple_start_dockers.sh
simple_start_dockers.sh
+11
-0
No files found.
K8s/mongo.yaml
0 → 100644
View file @
aae715af
apiVersion
:
v1
kind
:
Pod
metadata
:
name
:
mongo
labels
:
name
:
mongo
spec
:
containers
:
-
resources
:
limits
:
cpu
:
0.5
image
:
mongo:4
name
:
mongo
env
:
-
name
:
VAR
value
:
VAL
#ports:
#- containerPort: 27017
#name: mongo
volumeMounts
:
-
name
:
mongo-persistent-storage
mountPath
:
/var/lib/mongo
volumes
:
-
name
:
mongo-persistent-storage
gcePersistentDisk
:
pdName
:
mongo-disk
fsType
:
ext4
K8s/rabbitmq.yml
0 → 100644
View file @
aae715af
apiVersion
:
v1
kind
:
Pod
metadata
:
name
:
rabbitmq
labels
:
name
:
rabbitmq
spec
:
containers
:
-
resources
:
limits
:
cpu
:
0.5
image
:
rabbitmq:3-management
name
:
rabbitmq
env
:
-
name
:
VAR
value
:
VAL
#ports:
#- containerPort: 15672
#name: rabbitmq
simple_start_dockers.sh
0 → 100755
View file @
aae715af
#!/bin/bash
sudo
docker stop
$(
sudo
docker ps
-q
)
docker start mongo-inst
sleep
1
docker start some-rabbit
sleep
1
docker run
-d
alogo53/sure-tosca:3.0.0
sleep
5
docker run
-it
-e
MONOG_HOST
=
172.17.0.2
-e
RABBITMQ_HOST
=
172.17.0.3
-e
SURE_TOSCA_BASE_PATH
=
172.17.0.4/8081/tosca-sure/1.0.0
-p
8080:8080 alogo53/drip-manager:3.0.0
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