mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-28 22:17:14 +00:00
move images from gcr.io to quay.io
This commit is contained in:
parent
e8738d665b
commit
a1cda614dc
@ -56,11 +56,8 @@ Learn more in the [official Kubernetes documentation][k8sElasticsearchDocs].
|
||||
|
||||
## Building
|
||||
|
||||
Both images are now being hosted in google cloud and are built via the
|
||||
[cloud build](https://cloud.google.com/cloud-build/) product. To build these
|
||||
images yourself you will need to have the [gcloud sdk](https://cloud.google.com/sdk/install)
|
||||
installed and you will need to login. You can then run `make` in either
|
||||
image directory to trigger a container build.
|
||||
Both images are now being hosted in quay.io and are built locally via `make` and `docker`.
|
||||
To build locally run `make build` and then `make push` to publish.
|
||||
|
||||
### Known problems
|
||||
|
||||
|
@ -12,11 +12,14 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
.PHONY: build
|
||||
.PHONY: build push
|
||||
|
||||
PREFIX = gcr.io/fluentd-elasticsearch
|
||||
PREFIX = quay.io/fluentd_elasticsearch
|
||||
IMAGE = elasticsearch
|
||||
TAG = v6.7.2
|
||||
|
||||
build:
|
||||
gcloud builds submit --tag ${PREFIX}/${IMAGE}:${TAG}
|
||||
docker build --tag ${PREFIX}/${IMAGE}:${TAG} .
|
||||
|
||||
push:
|
||||
docker push ${PREFIX}/${IMAGE}:${TAG}
|
||||
|
@ -12,11 +12,14 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
.PHONY: build
|
||||
.PHONY: build push
|
||||
|
||||
PREFIX = gcr.io/fluentd-elasticsearch
|
||||
PREFIX = quay.io/fluentd_elasticsearch
|
||||
IMAGE = fluentd
|
||||
TAG = v2.5.2
|
||||
|
||||
build:
|
||||
gcloud builds submit --tag $(PREFIX)/$(IMAGE):$(TAG)
|
||||
docker build --tag ${PREFIX}/${IMAGE}:${TAG} .
|
||||
|
||||
push:
|
||||
docker push ${PREFIX}/${IMAGE}:${TAG}
|
Loading…
Reference in New Issue
Block a user