From 82b82b59034e49a6cf230f3ad88860c5feec9233 Mon Sep 17 00:00:00 2001 From: Anatoliy Bazko Date: Thu, 5 Sep 2019 08:52:36 +0300 Subject: [PATCH 1/5] Update python tooling image Signed-off-by: Anatoliy Bazko --- devfiles/python-django/devfile.yaml | 2 +- devfiles/python/devfile.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/devfiles/python-django/devfile.yaml b/devfiles/python-django/devfile.yaml index 7e6accbae..cb7ca9fbc 100644 --- a/devfiles/python-django/devfile.yaml +++ b/devfiles/python-django/devfile.yaml @@ -16,7 +16,7 @@ components: - type: dockerimage alias: python - image: quay.io/eclipse/che-python-3.6:nightly + image: centos/python-36-centos7:1 memoryLimit: 512Mi endpoints: - name: 'django' diff --git a/devfiles/python/devfile.yaml b/devfiles/python/devfile.yaml index a0f3df142..3404b0ffb 100644 --- a/devfiles/python/devfile.yaml +++ b/devfiles/python/devfile.yaml @@ -16,7 +16,7 @@ components: - type: dockerimage alias: python - image: quay.io/eclipse/che-python-3.6:nightly + image: centos/python-36-centos7:1 memoryLimit: 512Mi mountSources: true commands: From 08ff5d8cffb358e3b15ed0dc130d3e1d021118f7 Mon Sep 17 00:00:00 2001 From: Anatoliy Bazko Date: Fri, 6 Sep 2019 10:15:13 +0300 Subject: [PATCH 2/5] Fix description Signed-off-by: Anatoliy Bazko --- devfiles/python-django/meta.yaml | 2 +- devfiles/python/meta.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/devfiles/python-django/meta.yaml b/devfiles/python-django/meta.yaml index f9483565a..99868946f 100644 --- a/devfiles/python-django/meta.yaml +++ b/devfiles/python-django/meta.yaml @@ -1,6 +1,6 @@ --- displayName: Django -description: Stack with Python 3.6 and Django +description: Python Stack with Python 3.6 and Django application tags: ["Centos", "Python", "pip"] icon: https://www.eclipse.org/che/images/logo-eclipseche.svg globalMemoryLimit: 1686Mi diff --git a/devfiles/python/meta.yaml b/devfiles/python/meta.yaml index 81c08ecee..e675fbec9 100644 --- a/devfiles/python/meta.yaml +++ b/devfiles/python/meta.yaml @@ -1,6 +1,6 @@ --- displayName: Python -description: Stack with Python 3.6 +description: Python Stack with Python 3.6 tags: ["Centos", "Python", "pip"] icon: https://www.eclipse.org/che/images/logo-eclipseche.svg globalMemoryLimit: 1686Mi From 31f7c822a8b96776c3adaefad9cacd542281e15c Mon Sep 17 00:00:00 2001 From: Anatoliy Bazko Date: Tue, 10 Sep 2019 10:32:07 +0300 Subject: [PATCH 3/5] Fix Signed-off-by: Anatoliy Bazko --- devfiles/python-django/devfile.yaml | 2 +- devfiles/python-django/meta.yaml | 2 +- devfiles/python/devfile.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/devfiles/python-django/devfile.yaml b/devfiles/python-django/devfile.yaml index cb7ca9fbc..7e6accbae 100644 --- a/devfiles/python-django/devfile.yaml +++ b/devfiles/python-django/devfile.yaml @@ -16,7 +16,7 @@ components: - type: dockerimage alias: python - image: centos/python-36-centos7:1 + image: quay.io/eclipse/che-python-3.6:nightly memoryLimit: 512Mi endpoints: - name: 'django' diff --git a/devfiles/python-django/meta.yaml b/devfiles/python-django/meta.yaml index 99868946f..93f23cede 100644 --- a/devfiles/python-django/meta.yaml +++ b/devfiles/python-django/meta.yaml @@ -1,5 +1,5 @@ --- -displayName: Django +displayName: Python Django description: Python Stack with Python 3.6 and Django application tags: ["Centos", "Python", "pip"] icon: https://www.eclipse.org/che/images/logo-eclipseche.svg diff --git a/devfiles/python/devfile.yaml b/devfiles/python/devfile.yaml index 3404b0ffb..a0f3df142 100644 --- a/devfiles/python/devfile.yaml +++ b/devfiles/python/devfile.yaml @@ -16,7 +16,7 @@ components: - type: dockerimage alias: python - image: centos/python-36-centos7:1 + image: quay.io/eclipse/che-python-3.6:nightly memoryLimit: 512Mi mountSources: true commands: From b3bedf8191d7c7652fb714c178a9f62ae0072500 Mon Sep 17 00:00:00 2001 From: Anatoliy Bazko Date: Wed, 11 Sep 2019 10:41:52 +0300 Subject: [PATCH 4/5] fix Signed-off-by: Anatoliy Bazko --- arbitrary-users-patch/base_images | 2 +- devfiles/python-django/devfile.yaml | 2 +- devfiles/python-django/meta.yaml | 2 +- devfiles/python/meta.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arbitrary-users-patch/base_images b/arbitrary-users-patch/base_images index 36602c211..2cf08faea 100644 --- a/arbitrary-users-patch/base_images +++ b/arbitrary-users-patch/base_images @@ -1,4 +1,4 @@ -che-python-3.6 centos/python-36-centos7:1 +che-python-3.7 python:3.7.4-slim che-php-7 eclipse/php:7.1-che7 che-golang-1.10 golang:1.10.7-stretch che-golang-1.12 golang:1.12-stretch diff --git a/devfiles/python-django/devfile.yaml b/devfiles/python-django/devfile.yaml index 7e6accbae..b7f2c2440 100644 --- a/devfiles/python-django/devfile.yaml +++ b/devfiles/python-django/devfile.yaml @@ -29,7 +29,7 @@ commands: - type: exec component: python - command: pip install -r requirements.txt && pip install ptvsd + command: pip install --user -r requirements.txt && pip install --user ptvsd workdir: ${CHE_PROJECTS_ROOT}/django-realworld-example-app - name: migrate diff --git a/devfiles/python-django/meta.yaml b/devfiles/python-django/meta.yaml index 93f23cede..d70b5d38c 100644 --- a/devfiles/python-django/meta.yaml +++ b/devfiles/python-django/meta.yaml @@ -1,6 +1,6 @@ --- displayName: Python Django -description: Python Stack with Python 3.6 and Django application +description: Python Stack with Python 3.7 and Django application tags: ["Centos", "Python", "pip"] icon: https://www.eclipse.org/che/images/logo-eclipseche.svg globalMemoryLimit: 1686Mi diff --git a/devfiles/python/meta.yaml b/devfiles/python/meta.yaml index e675fbec9..9a843cefd 100644 --- a/devfiles/python/meta.yaml +++ b/devfiles/python/meta.yaml @@ -1,6 +1,6 @@ --- displayName: Python -description: Python Stack with Python 3.6 +description: Python Stack with Python 3.7 tags: ["Centos", "Python", "pip"] icon: https://www.eclipse.org/che/images/logo-eclipseche.svg globalMemoryLimit: 1686Mi From 339305c98bfb861d6010f5865f108745696e9435 Mon Sep 17 00:00:00 2001 From: Anatoliy Bazko Date: Thu, 12 Sep 2019 10:47:23 +0300 Subject: [PATCH 5/5] Fix Signed-off-by: Anatoliy Bazko --- arbitrary-users-patch/base_images | 1 + devfiles/python-django/devfile.yaml | 2 +- devfiles/python/devfile.yaml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/arbitrary-users-patch/base_images b/arbitrary-users-patch/base_images index 2cf08faea..5c23295ba 100644 --- a/arbitrary-users-patch/base_images +++ b/arbitrary-users-patch/base_images @@ -1,3 +1,4 @@ +che-python-3.6 centos/python-36-centos7:1 che-python-3.7 python:3.7.4-slim che-php-7 eclipse/php:7.1-che7 che-golang-1.10 golang:1.10.7-stretch diff --git a/devfiles/python-django/devfile.yaml b/devfiles/python-django/devfile.yaml index b7f2c2440..bc2237be4 100644 --- a/devfiles/python-django/devfile.yaml +++ b/devfiles/python-django/devfile.yaml @@ -16,7 +16,7 @@ components: - type: dockerimage alias: python - image: quay.io/eclipse/che-python-3.6:nightly + image: quay.io/eclipse/che-python-3.7:nightly memoryLimit: 512Mi endpoints: - name: 'django' diff --git a/devfiles/python/devfile.yaml b/devfiles/python/devfile.yaml index a0f3df142..8958cfe95 100644 --- a/devfiles/python/devfile.yaml +++ b/devfiles/python/devfile.yaml @@ -16,7 +16,7 @@ components: - type: dockerimage alias: python - image: quay.io/eclipse/che-python-3.6:nightly + image: quay.io/eclipse/che-python-3.7:nightly memoryLimit: 512Mi mountSources: true commands: