Merge pull request #546 from dims/bump-example-dns-backend-to-python3

Bump example-dns-backend to python3
This commit is contained in:
Kubernetes Prow Robot 2024-09-17 09:53:15 +01:00 committed by GitHub
commit b09d8b7cab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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