Skip to content

Commit

Permalink
Merged differences
Browse files Browse the repository at this point in the history
  • Loading branch information
zagganas committed Jun 5, 2022
2 parents fc69feb + 6bd4426 commit a11f51d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
1 change: 0 additions & 1 deletion controllers/SiteController.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ public function actionAuthConfirmed($token)
User::createNewUser($username, $persistent_id);
$identity=User::findByUsername($username);
$message="A new user with username $username has been created";
EmailEventsAdmin::NotifyByEmail('user_creation', -1,$message);
}
else if ((!empty($identityU)) && empty($identityP))
{
Expand Down
14 changes: 7 additions & 7 deletions database_schema/schema_db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1779,10 +1779,10 @@ COPY public.jupyter_images (id, description, image) FROM stdin;
5 Tensorflow notebook jupyter/tensorflow-notebook:latest
\.

alter table workflow add column workflow_type varchar(100);
alter table workflow_upload add column workflow_type varchar(100);
create index workflow_type_idx on workflow_upload(workflow_type);
create index workflow_upload_type_idx on workflow_upload(workflow_type);
alter table jupyter_images add column gpu boolean default false;
alter table jupyter_server add column state varchar(20);
alter table jupyter_server add column image_id bigint;
alter table public.workflow add column workflow_type varchar(100);
alter table public.workflow_upload add column workflow_type varchar(100);
create index workflow_type_idx on public.workflow_upload(workflow_type);
create index workflow_upload_type_idx on public.workflow_upload(workflow_type);
alter table public.jupyter_images add column gpu boolean default false;
alter table public.jupyter_server add column state varchar(20);
alter table public.jupyter_server add column image_id bigint;
2 changes: 2 additions & 0 deletions deployment/templates/schema/schema-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ stringData:
{
"domain": "{{ .Values.jupyter.app_name }}.{{ .Values.domain }}"
},
"cleanTeskJobs": {{ .Values.schema.cleanTeskJobs}},
"cleanTeskWFJobs":{{ .Values.schema.cleanTeskWFJobs}},
{{- if .Capabilities.APIVersions.Has "networking.k8s.io/v1/Ingress" }}
"platform": "kubernetes"
{{- else if .Capabilities.APIVersions.Has "route.openshift.io/v1/Route" }}
Expand Down
4 changes: 2 additions & 2 deletions deployment/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ ftp:
deployment:
image: diwis/schema-ftp:1
domain: ftp
username: tesk-1
password: Z6fsH6MG
username: test
password: test

minio:
app_name: minio
Expand Down

0 comments on commit a11f51d

Please sign in to comment.