mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-08 04:32:37 +00:00
Stop using dockerfile/* images
As per http://blog.docker.com/2015/03/updates-available-to-popular-repos-update-your-images/ docker has stopped answering dockerfile/redis and dockerfile/nginx. Fix all users in our tree. Sadly this means a lot of published examples are now broken.
This commit is contained in:
@@ -1075,7 +1075,7 @@ const (
|
||||
"containers": [
|
||||
{
|
||||
"name": "redis",
|
||||
"image": "dockerfile/redis",
|
||||
"image": "redis",
|
||||
"volumeMounts": [{
|
||||
"name": "redis-data",
|
||||
"mountPath": "/data"
|
||||
@@ -1103,7 +1103,7 @@ const (
|
||||
id: container-vm-guestbook-manifest
|
||||
containers:
|
||||
- name: redis
|
||||
image: dockerfile/redis
|
||||
image: redis
|
||||
volumeMounts:
|
||||
- name: redis-data
|
||||
mountPath: /data
|
||||
|
@@ -12,7 +12,7 @@
|
||||
"id": "nginx-controller",
|
||||
"containers": [{
|
||||
"name": "nginx",
|
||||
"image": "dockerfile/nginx",
|
||||
"image": "nginx",
|
||||
"ports": [{"containerPort": 80}]
|
||||
}]
|
||||
}
|
||||
|
@@ -15,7 +15,7 @@
|
||||
"spec": {
|
||||
"containers": [{
|
||||
"name": "nginx",
|
||||
"image": "dockerfile/nginx",
|
||||
"image": "nginx",
|
||||
"ports": [{"containerPort": 80}]
|
||||
}]
|
||||
}
|
||||
|
Reference in New Issue
Block a user