Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move images from gcr.io to quay.io #79390

Merged
merged 2 commits into from
Jun 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 2 additions & 5 deletions cluster/addons/fluentd-elasticsearch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
10 changes: 7 additions & 3 deletions cluster/addons/fluentd-elasticsearch/es-image/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@
# 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}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please add push with latest tag too...

docker push ${PREFIX}/${IMAGE}:latest
11 changes: 8 additions & 3 deletions cluster/addons/fluentd-elasticsearch/fluentd-es-image/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,16 @@
# 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}
docker push ${PREFIX}/${IMAGE}:latest