diff --git a/staging/cluster-dns/dns-backend-rc.yaml b/staging/cluster-dns/dns-backend-rc.yaml index 8aad9aad..dbd7d761 100644 --- a/staging/cluster-dns/dns-backend-rc.yaml +++ b/staging/cluster-dns/dns-backend-rc.yaml @@ -15,7 +15,7 @@ spec: spec: containers: - name: dns-backend - image: registry.k8s.io/example-dns-backend:v1 + image: registry.k8s.io/example-dns-backend:v2 ports: - name: backend-port containerPort: 8000 diff --git a/staging/cluster-dns/images/backend/Dockerfile b/staging/cluster-dns/images/backend/Dockerfile index c2a4e7cf..6c6da7a9 100644 --- a/staging/cluster-dns/images/backend/Dockerfile +++ b/staging/cluster-dns/images/backend/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM python:2.7-slim +FROM python:3-slim COPY . /dns-backend WORKDIR /dns-backend diff --git a/staging/cluster-dns/images/backend/Makefile b/staging/cluster-dns/images/backend/Makefile index bac8c898..78704a44 100644 --- a/staging/cluster-dns/images/backend/Makefile +++ b/staging/cluster-dns/images/backend/Makefile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -TAG = v1 +TAG = v2 PREFIX = staging-k8s.gcr.io IMAGE = example-dns-backend