Merge pull request #546 from dims/bump-example-dns-backend-to-python3
Bump example-dns-backend to python3
This commit is contained in:
commit
b09d8b7cab
|
@ -15,7 +15,7 @@ spec:
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: dns-backend
|
- name: dns-backend
|
||||||
image: registry.k8s.io/example-dns-backend:v1
|
image: registry.k8s.io/example-dns-backend:v2
|
||||||
ports:
|
ports:
|
||||||
- name: backend-port
|
- name: backend-port
|
||||||
containerPort: 8000
|
containerPort: 8000
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM python:2.7-slim
|
FROM python:3-slim
|
||||||
|
|
||||||
COPY . /dns-backend
|
COPY . /dns-backend
|
||||||
WORKDIR /dns-backend
|
WORKDIR /dns-backend
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
TAG = v1
|
TAG = v2
|
||||||
PREFIX = staging-k8s.gcr.io
|
PREFIX = staging-k8s.gcr.io
|
||||||
IMAGE = example-dns-backend
|
IMAGE = example-dns-backend
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue