From 33086abb93e7dee537aa2d95b0a68c5abca1700a Mon Sep 17 00:00:00 2001 From: Emmanuel Alejandro Parada Licea Date: Wed, 29 Jan 2025 16:23:16 -0600 Subject: [PATCH] chore(gke): delete old region tags from django_tutorial --- kubernetes_engine/django_tutorial/Dockerfile | 3 --- kubernetes_engine/django_tutorial/mysite/settings.py | 2 -- 2 files changed, 5 deletions(-) diff --git a/kubernetes_engine/django_tutorial/Dockerfile b/kubernetes_engine/django_tutorial/Dockerfile index ea0d23a3dc2..b5be9702786 100644 --- a/kubernetes_engine/django_tutorial/Dockerfile +++ b/kubernetes_engine/django_tutorial/Dockerfile @@ -11,8 +11,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# [START docker] - # The Google App Engine python runtime is Debian Jessie with Python installed # and various os-level packages to allow installation of popular Python # libraries. The source is on github at: @@ -29,4 +27,3 @@ RUN /env/bin/pip install --upgrade pip && /env/bin/pip install -r /app/requireme ADD . /app CMD gunicorn -b :$PORT mysite.wsgi -# [END docker] diff --git a/kubernetes_engine/django_tutorial/mysite/settings.py b/kubernetes_engine/django_tutorial/mysite/settings.py index f564509af4f..9b2dfc5ddb9 100644 --- a/kubernetes_engine/django_tutorial/mysite/settings.py +++ b/kubernetes_engine/django_tutorial/mysite/settings.py @@ -76,7 +76,6 @@ # Database # https://docs.djangoproject.com/en/stable/ref/settings/#databases -# [START dbconfig] # [START gke_django_database_config] DATABASES = { "default": { @@ -91,7 +90,6 @@ } } # [END gke_django_database_config] -# [END dbconfig] # Internationalization # https://docs.djangoproject.com/en/stable/topics/i18n/