Skip to content

Commit

Permalink
Prepare 0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
SoerenHenning committed Feb 11, 2021
1 parent c3519cd commit aa7644d
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions docker-test/uc1-docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ services:
SCHEMA_REGISTRY_HOST_NAME: schema-registry
SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181'
uc-app:
image: theodolite/theodolite-uc1-kstreams-app:latest
image: theodolite/theodolite-uc1-kstreams-app:v0.3.0
depends_on:
- schema-registry
- kafka
environment:
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
uc-wg:
image: theodolite/theodolite-uc1-workload-generator:latest
image: theodolite/theodolite-uc1-workload-generator:v0.3.0
depends_on:
- schema-registry
- kafka
Expand Down
4 changes: 2 additions & 2 deletions docker-test/uc2-docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ services:
SCHEMA_REGISTRY_HOST_NAME: schema-registry
SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181'
uc-app:
image: theodolite/theodolite-uc2-kstreams-app:latest
image: theodolite/theodolite-uc2-kstreams-app:v0.3.0
depends_on:
- schema-registry
- kafka
environment:
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
uc-wg:
image: theodolite/theodolite-uc2-workload-generator:latest
image: theodolite/theodolite-uc2-workload-generator:v0.3.0
depends_on:
- schema-registry
- kafka
Expand Down
4 changes: 2 additions & 2 deletions docker-test/uc3-docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ services:
SCHEMA_REGISTRY_HOST_NAME: schema-registry
SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181'
uc-app:
image: theodolite/theodolite-uc3-kstreams-app:latest
image: theodolite/theodolite-uc3-kstreams-app:v0.3.0
depends_on:
- schema-registry
- kafka
Expand All @@ -44,7 +44,7 @@ services:
SCHEMA_REGISTRY_URL: http://schema-registry:8081
KAFKA_WINDOW_DURATION_MINUTES: 60
uc-wg:
image: theodolite/theodolite-uc3-workload-generator:latest
image: theodolite/theodolite-uc3-workload-generator:v0.3.0
depends_on:
- schema-registry
- kafka
Expand Down
4 changes: 2 additions & 2 deletions docker-test/uc4-docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ services:
SCHEMA_REGISTRY_HOST_NAME: schema-registry
SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:2181'
uc-app:
image: theodolite/theodolite-uc4-kstreams-app:latest
image: theodolite/theodolite-uc4-kstreams-app:v0.3.0
depends_on:
- schema-registry
- kafka
environment:
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
SCHEMA_REGISTRY_URL: http://schema-registry:8081
uc-wg:
image: theodolite/theodolite-uc4-workload-generator:latest
image: theodolite/theodolite-uc4-workload-generator:v0.3.0
depends_on:
- schema-registry
- kafka
Expand Down
4 changes: 2 additions & 2 deletions execution/run_uc.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def start_workload_generator(wg_yaml, dim_value, uc_id):
wg_containter = next(filter(
lambda x: x['name'] == 'workload-generator', wg_yaml['spec']['template']['spec']['containers']))
wg_containter['image'] = 'ghcr.io/cau-se/theodolite-uc' + uc_id + \
'-workload-generator:latest'
'-workload-generator:v0.3.0'
# Set environment variables

replace_env_value(wg_containter['env'], 'NUM_SENSORS', str(num_sensors))
Expand Down Expand Up @@ -226,7 +226,7 @@ def start_application(svc_yaml, svc_monitor_yaml, jmx_yaml, deploy_yaml,
lambda x: x['name'] == 'uc-application',
deploy_yaml['spec']['template']['spec']['containers']))
app_container['image'] = 'ghcr.io/cau-se/theodolite-uc' + uc_id \
+ '-kstreams-app:latest'
+ '-kstreams-app:v0.3.0'

# Set configurations environment parameters for SPE
for k, v in configurations.items():
Expand Down
2 changes: 1 addition & 1 deletion execution/theodolite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
claimName: theodolite-pv-claim
containers:
- name: theodolite
image: ghcr.io/cau-se/theodolite:latest
image: ghcr.io/cau-se/theodolite:v0.3.0
# imagePullPolicy: Never # Used to pull "own" local image
env:
- name: UC # mandatory
Expand Down
2 changes: 1 addition & 1 deletion execution/uc-application/aggregation-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
terminationGracePeriodSeconds: 0
containers:
- name: uc-application
image: uc-app:latest
image: uc-app:v0.3.0
ports:
- containerPort: 5555
name: jmx
Expand Down
2 changes: 1 addition & 1 deletion execution/uc-workload-generator/workloadGenerator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
terminationGracePeriodSeconds: 0
containers:
- name: workload-generator
image: workload-generator:latest
image: workload-generator:v0.3.0
env:
# Order need to be preserved for run_uc.py
- name: NUM_SENSORS
Expand Down

0 comments on commit aa7644d

Please sign in to comment.