Skip to content
Snippets Groups Projects
Commit ed79689b authored by Steffen Vogel's avatar Steffen Vogel :santa_tone2:
Browse files

use docker images from RWTH GitLab registry

parent 29612f37
No related branches found
No related tags found
No related merge requests found
Pipeline #198724 failed
......@@ -9,14 +9,14 @@ volumes:
services:
# The VILLASweb frontend
frontend:
image: villas/web-frontend:demo-v0.1
image: registry.git.rwth-aachen.de/acs/public/villas/web:demo-v0.1
build:
context: frontend
restart: always
# The VILLASweb backend
backend:
image: villas/web-backend:demo-v0.1
image: registry.git.rwth-aachen.de/acs/public/villas/web-backend:demo-v0.1
build:
context: backend
environment:
......@@ -54,7 +54,7 @@ services:
# VILLASnode, the gateway between UDP and WebSocket traffic
node:
image: villas/node:demo-v0.1
image: registry.git.rwth-aachen.de/acs/public/villas/node:demo-v0.1
privileged: true
command: node /etc/villas/node/demo.conf
volumes:
......@@ -68,7 +68,7 @@ services:
# A relay for websocket nodes
relay:
image: villas/node:demo-v0.1
image: registry.git.rwth-aachen.de/acs/public/villas/node:demo-v0.1
restart: always
command: relay
......@@ -89,7 +89,7 @@ services:
build:
context: .
dockerfile: Dockerfile.broker
image: villas/broker:demo-v0.1
image: registry.git.rwth-aachen.de/acs/public/villas/demo/broker:demo-v0.1
environment:
RABBITMQ_DEFAULT_USER: "villas"
RABBITMQ_DEFAULT_PASS: "s3c0sim4!"
......@@ -104,6 +104,7 @@ services:
build:
context: .
dockerfile: Dockerfile.controller
image: registry.git.rwth-aachen.de/acs/public/villas/controller:demo-v0.1
command: villas-ctl -b "amqp://villas:s3c0sim4!@broker/%2F" -c /etc/villas/controller/config.json daemon
volumes:
- ./etc/villas/controller:/etc/villas/controller
......
......@@ -30,7 +30,7 @@ spec:
value: info
- name: NODE_ENV
value: dotenv
image: villas/web-backend:demo-v0.1
image: registry.git.rwth-aachen.de/acs/public/villas/web-backend:demo-v0.1
name: backend
volumeMounts:
- mountPath: /usr/src/app/public/
......
......@@ -17,7 +17,7 @@ spec:
app.kubernetes.io/part-of: villas-controller
spec:
containers:
- image: villas/broker:demo-v0.1
- image: registry.git.rwth-aachen.de/acs/public/villas/demo/broker:demo-v0.1
name: broker
env:
- name: RABBITMQ_NODE_PORT
......
......@@ -21,7 +21,7 @@ spec:
- -c
- /etc/villas/controller/config.json
- daemon
image: villas/controller
image: registry.git.rwth-aachen.de/acs/public/villas/controller
name: controller
volumeMounts:
- mountPath: /etc/villas/controller/
......
......@@ -17,7 +17,7 @@ spec:
app.kubernetes.io/part-of: villas-web
spec:
containers:
- image: villas/web-frontend:demo-v0.1
- image: registry.git.rwth-aachen.de/acs/public/villas/web:demo-v0.1
name: frontend
ports:
- name: http
......
......@@ -16,10 +16,13 @@ spec:
app.kubernetes.io/component: node
spec:
containers:
- args:
- node
- /etc/villas/node/demo.conf
image: villas/node:demo-v0.1
- command: [ "sh", "-c" ]
args:
- "sleep 3600"
# args:
# - node
# - /etc/villas/node/demo.conf
image: registry.git.rwth-aachen.de/acs/public/villas/node:demo-v0.1
name: node
ports:
- containerPort: 80
......@@ -52,12 +55,12 @@ spec:
name: config
- mountPath: /data
name: data
livenessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 3
periodSeconds: 3
# livenessProbe:
# httpGet:
# path: /
# port: 80
# initialDelaySeconds: 5
# periodSeconds: 5
volumes:
- name: config
configMap:
......
......@@ -19,14 +19,14 @@ spec:
containers:
- args:
- relay
image: villas/node:demo-v0.1
image: registry.git.rwth-aachen.de/acs/public/villas/node:demo-v0.1
name: relay
ports:
- name: http
containerPort: 8088
livenessProbe:
httpGet:
path: /
port: 8088
initialDelaySeconds: 3
periodSeconds: 3
# livenessProbe:
# httpGet:
# path: /
# port: 8088
# initialDelaySeconds: 3
# periodSeconds: 3
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment