From fb98bcaa01657360a9c36e23bc1465a1a6c43300 Mon Sep 17 00:00:00 2001 From: flynn Date: Sun, 12 Dec 2021 11:29:28 -0500 Subject: [PATCH] deploy table chg --- kubernetes/flower.yaml | 2 +- kubernetes/tasks.yaml | 4 ++-- kubernetes/web.yaml | 4 ++-- pyproject.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/kubernetes/flower.yaml b/kubernetes/flower.yaml index b3d1c70..cf165e4 100644 --- a/kubernetes/flower.yaml +++ b/kubernetes/flower.yaml @@ -20,7 +20,7 @@ spec: spec: containers: - name: pypistats-flower - image: us.gcr.io/pypistats-org/pypistats:9 + image: us.gcr.io/pypistats-org/pypistats:10 imagePullPolicy: Always args: ["flower"] envFrom: diff --git a/kubernetes/tasks.yaml b/kubernetes/tasks.yaml index 545b1cc..e05170a 100644 --- a/kubernetes/tasks.yaml +++ b/kubernetes/tasks.yaml @@ -20,14 +20,14 @@ spec: spec: containers: - name: beat - image: us.gcr.io/pypistats-org/pypistats:9 + image: us.gcr.io/pypistats-org/pypistats:10 imagePullPolicy: Always args: ["beat"] envFrom: - secretRef: name: pypistats-secrets - name: celery - image: us.gcr.io/pypistats-org/pypistats:9 + image: us.gcr.io/pypistats-org/pypistats:10 imagePullPolicy: Always args: ["celery"] envFrom: diff --git a/kubernetes/web.yaml b/kubernetes/web.yaml index 845186e..b047fee 100644 --- a/kubernetes/web.yaml +++ b/kubernetes/web.yaml @@ -20,7 +20,7 @@ spec: spec: initContainers: - name: migrate - image: us.gcr.io/pypistats-org/pypistats:9 + image: us.gcr.io/pypistats-org/pypistats:10 imagePullPolicy: Always envFrom: - secretRef: @@ -28,7 +28,7 @@ spec: args: ["migrate"] containers: - name: web - image: us.gcr.io/pypistats-org/pypistats:9 + image: us.gcr.io/pypistats-org/pypistats:10 imagePullPolicy: Always envFrom: - secretRef: diff --git a/pyproject.toml b/pyproject.toml index 1c2f3d8..089bb90 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pypistatsorg" -version = "9" +version = "10" description = "Download counts dashboard for python packages" authors = ["Flynn "]