Skip to content

Commit 87c414d

Browse files
authored
Merge stable into master for release 1.3.0 (#378)
* Upgrade from helm2 to helm3 by updating the base image. (#370) * Add links for client & ImageJ Plugin to architecture diagram (#377) * Update version to 1.3.0 for pending release.
1 parent 2e3e3b6 commit 87c414d

File tree

21 files changed

+50
-47
lines changed

21 files changed

+50
-47
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM cloudposse/build-harness:0.31.1 as build-harness
1+
FROM cloudposse/build-harness:0.39.0 as build-harness
22

3-
FROM cloudposse/geodesic:0.123.1
3+
FROM cloudposse/geodesic:0.135.0
44

55
RUN apk add --update dialog libqrencode
66

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Tracked Image
4949
Start a terminal shell and install the DeepCell Kiosk wrapper script:
5050

5151
```bash
52-
docker run -e DOCKER_TAG=1.2.1 vanvalenlab/kiosk-console:1.2.1 | sudo bash
52+
docker run -e DOCKER_TAG=1.3.0 vanvalenlab/kiosk-console:1.3.0 | sudo bash
5353
```
5454

5555
To start the kiosk, just run `kiosk-console` from the terminal shell.
@@ -60,20 +60,25 @@ Check out our [docs](https://deepcell-kiosk.readthedocs.io/en/master/GETTING_STA
6060

6161
![Kiosk Architecture](https://raw.githubusercontent.com/vanvalenlab/kiosk-console/master/docs/images/Kiosk_Architecture.png)
6262

63-
- [Frontend](https://github.com/vanvalenlab/kiosk-frontend): API for creating and managing jobs, and a React-based web interface for the DeepCell Kiosk.
64-
6563
- [Consumer](https://github.com/vanvalenlab/kiosk-redis-consumer): Retrieves items from the Job Queue and handles the processing pipeline for that item. Each consumer only works on one item at a time.
6664

6765
- [Model Server](https://github.com/vanvalenlab/kiosk-tf-serving): Serves models over a gRPC API, allowing consumers to send data and get back predictions.
6866

6967
- [GPU Autoscaler](https://github.com/vanvalenlab/kiosk-autoscaler): Automatically and efficiently scales Kubernetes GPU resources.
7068

71-
- _Not pictured above_:
69+
- [Frontend](https://github.com/vanvalenlab/kiosk-frontend): API for creating and managing jobs, and a React-based web interface for the DeepCell Kiosk.
7270

73-
* [Bucket Monitor](https://github.com/vanvalenlab/kiosk-bucket-monitor): Purges the bucket of uploaded and processed files that are older than `AGE_THRESHOLD`, 3 days by default.
71+
- _Additional Data Entry Tools_:
72+
73+
- [ImageJ Plugin](https://github.com/vanvalenlab/kiosk-imageJ-plugin): An ImageJ 1.x plugin for processing images with an existing cluster.
74+
75+
- [Command-line Interface](https://github.com/vanvalenlab/kiosk-client): A python-based CLI for submitting and managing DeepCell Kiosk jobs.
76+
77+
- _Not pictured above_:
7478

75-
* [Janitor](https://github.com/vanvalenlab/kiosk-redis-janitor): Monitors in-progress items and makes sure no jobs get left un-finished.
79+
- [Bucket Monitor](https://github.com/vanvalenlab/kiosk-bucket-monitor): Purges the bucket of uploaded and processed files that are older than `AGE_THRESHOLD`, 3 days by default.
7680

81+
- [Janitor](https://github.com/vanvalenlab/kiosk-redis-janitor): Monitors in-progress items and makes sure no jobs get left un-finished.
7782

7883
## Contribute
7984

conf/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ destroy: \
2323
# Unit tests
2424
test/unit:
2525
@echo "Linting helm charts"
26-
@helm init --client-only
2726
@ls -1 -d /conf/charts/* | xargs helm lint
2827
@echo "Linting helmfiles"
2928
@helmfile -f /conf/ELK_helmfiles/ -q build 1>/dev/null

conf/charts/autoscaler/templates/clusterrole.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.rbac.create -}}
2-
apiVersion: rbac.authorization.k8s.io/v1beta1
2+
apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
55
name: {{ template "fullname" . }}

conf/charts/autoscaler/templates/clusterrolebinding.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.rbac.create -}}
2-
apiVersion: rbac.authorization.k8s.io/v1beta1
2+
apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRoleBinding
44
metadata:
55
name: {{ template "fullname" . }}

conf/charts/autoscaler/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: extensions/v1beta1
1+
apiVersion: apps/v1
22
kind: Deployment
33
metadata:
44
name: {{ template "fullname" . }}

conf/charts/benchmarking/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: extensions/v1beta1
1+
apiVersion: apps/v1
22
kind: Deployment
33
metadata:
44
name: {{ template "fullname" . }}

conf/charts/bucket-monitor/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apiVersion: extensions/v1beta1
1+
apiVersion: apps/v1
22
kind: Deployment
33
metadata:
44
name: {{ template "fullname" . }}

conf/charts/frontend/templates/ingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{{- if .Values.ingress.enabled -}}
22
{{- $fullName := include "fullname" . -}}
33
{{- $ingressPath := .Values.ingress.path -}}
4-
apiVersion: extensions/v1beta1
4+
apiVersion: networking.k8s.io/v1beta1
55
kind: Ingress
66
metadata:
77
name: {{ $fullName }}

conf/charts/redis-janitor/templates/clusterrole.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.rbac.create -}}
2-
apiVersion: rbac.authorization.k8s.io/v1beta1
2+
apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
55
name: {{ template "fullname" . }}

0 commit comments

Comments
 (0)