From 97c58749d06c1ff07151798c106aec396226247d Mon Sep 17 00:00:00 2001 From: Cosmin Cojocar Date: Wed, 28 Mar 2018 15:53:48 +0200 Subject: [PATCH] Update the name of the docker repository to mseoss --- charts/elasticsearch/README.md | 2 +- charts/elasticsearch/environments/acs/values.yaml | 2 +- charts/elasticsearch/environments/minikube/values.yaml | 2 +- dockerfiles/logstash/README.md | 6 +++--- dockerfiles/oauth2-proxy/README.md | 4 ++-- dockerfiles/stunnel/README.md | 6 +++--- tools/elasticlicense/Makefile | 2 +- tools/elasticlicense/README.md | 2 +- tools/elastictemplate/Makefile | 2 +- tools/elastictemplate/README.md | 2 +- tools/elasticwatcher/Makefile | 2 +- tools/elasticwatcher/README.md | 2 +- 12 files changed, 17 insertions(+), 17 deletions(-) diff --git a/charts/elasticsearch/README.md b/charts/elasticsearch/README.md index b5212db..2dfb289 100644 --- a/charts/elasticsearch/README.md +++ b/charts/elasticsearch/README.md @@ -18,7 +18,7 @@ The following table lists some of the configurable parameters of the `elasticsea | `image.pullSecrets` | specify image pull secrets | `nil` (does not add image pull secrets to deployed pods) | | `image.pullPolicy` | image pull policy | `Always` | | `license.install` | install x-pack license | `false` | -| `license.image.repository` | elasticlicense tool image | `docker.io/mse/elasticlicense` | +| `license.image.repository` | elasticlicense tool image | `mseoss/elasticlicense` | | `license.image.tag` | elasticlicense tool image tag | `latest` | | `license.image.pullPolicy` | elasticlicense tool image pull policy | `Always` | | `license.value` | x-pack license | `nil` (must be provided during installation) | diff --git a/charts/elasticsearch/environments/acs/values.yaml b/charts/elasticsearch/environments/acs/values.yaml index 5a73634..b2ac332 100644 --- a/charts/elasticsearch/environments/acs/values.yaml +++ b/charts/elasticsearch/environments/acs/values.yaml @@ -6,7 +6,7 @@ image: license: install: false image: - repository: docker.io/mse/elasticlicense + repository: mseoss/elasticlicense tag: latest pullPolicy: Always value: diff --git a/charts/elasticsearch/environments/minikube/values.yaml b/charts/elasticsearch/environments/minikube/values.yaml index 5f63390..2ee8774 100644 --- a/charts/elasticsearch/environments/minikube/values.yaml +++ b/charts/elasticsearch/environments/minikube/values.yaml @@ -6,7 +6,7 @@ image: license: install: false image: - repository: docker.io/mse/elasticlicense + repository: mseoss/elasticlicense tag: latest pullPolicy: Always value: diff --git a/dockerfiles/logstash/README.md b/dockerfiles/logstash/README.md index 903e9d8..43fd34e 100644 --- a/dockerfiles/logstash/README.md +++ b/dockerfiles/logstash/README.md @@ -13,8 +13,8 @@ The `VERSION` environment variable defines the version of the logstash base imag ``` export VERSION=6.2.3 -docker build -t docker.io/mse/logstash:${VERSION} --build-arg VERSION=${VERSION} . -docker push docker.io/mse/logstash:${VERSION} +docker build -t mseoss/logstash:${VERSION} --build-arg VERSION=${VERSION} . +docker push mseoss/logstash:${VERSION} ``` # Run @@ -22,7 +22,7 @@ docker push docker.io/mse/logstash:${VERSION} Logstash image can be started for testing with the following command: ``` -docker run --rm -it -v ~/pipeline/:/usr/share/logstash/pipeline/ docker.io/mse/logstash:${VERSION} +docker run --rm -it -v ~/pipeline/:/usr/share/logstash/pipeline/ mseoss/logstash:${VERSION} ``` Your local pipeline configuration should be stored in the `~/pipeline` folder. diff --git a/dockerfiles/oauth2-proxy/README.md b/dockerfiles/oauth2-proxy/README.md index 12fd637..df501a3 100644 --- a/dockerfiles/oauth2-proxy/README.md +++ b/dockerfiles/oauth2-proxy/README.md @@ -5,7 +5,7 @@ Docker image for [oauth2_proxy](https://github.com/bitly/oauth2_proxy). # Build ``` -docker build -t docker.io/mse/oauth2_proxy:v2.2 . -docker push docker.io/mse/oauth2_proxy:v2.2 +docker build -t mseoss/oauth2_proxy:v2.2 . +docker push mseoss/oauth2_proxy:v2.2 ``` diff --git a/dockerfiles/stunnel/README.md b/dockerfiles/stunnel/README.md index aa3f542..e4719ec 100644 --- a/dockerfiles/stunnel/README.md +++ b/dockerfiles/stunnel/README.md @@ -8,8 +8,8 @@ The `VERSION` environment variable defines the version of the stunnel package. ``` export VERSION=5.44 -docker build -t docker.io/mse/stunnel:${VERSION} --build-arg VERSION=${VERSION} . -docker push docker.io/mse/stunnel:${VERSION} +docker build -t mseoss/stunnel:${VERSION} --build-arg VERSION=${VERSION} . +docker push mseoss/stunnel:${VERSION} ``` # Run @@ -17,5 +17,5 @@ docker push docker.io/mse/stunnel:${VERSION} stunnel can be started in a docker container with the following command: ``` -docker run docker.io/mse/stunnel:${VERSION} +docker run mseoss/stunnel:${VERSION} ``` diff --git a/tools/elasticlicense/Makefile b/tools/elasticlicense/Makefile index 3760f68..4167e25 100644 --- a/tools/elasticlicense/Makefile +++ b/tools/elasticlicense/Makefile @@ -1,7 +1,7 @@ VERSION ?= $(shell git describe --always --tags) BIN = elasticlicense BUILD_CMD = go build -o build/$(BIN)-$(VERSION)-$${GOOS}-$${GOARCH} & -IMAGE_REPO = docker.io/mse +IMAGE_REPO = mseoss FMT_CMD = $(gofmt -s -l -w $(find . -type f -name '*.go' -not -path './vendor/*') | tee /dev/stderr) default: diff --git a/tools/elasticlicense/README.md b/tools/elasticlicense/README.md index 4bc3bc5..a2da86f 100644 --- a/tools/elasticlicense/README.md +++ b/tools/elasticlicense/README.md @@ -36,7 +36,7 @@ elasticlicense install -license-file=license.json -host= -po or run the tool in a docker container: ```bash -docker run --rm -v ${PWD}:/config -t docker.io/mse/elasticlicense install -license-file=/config/license.json \ +docker run --rm -v ${PWD}:/config -t mseoss/elasticlicense install -license-file=/config/license.json \ -host= -port= -auth-file=/config/auth-file.json ``` diff --git a/tools/elastictemplate/Makefile b/tools/elastictemplate/Makefile index a0b2b08..083a01c 100644 --- a/tools/elastictemplate/Makefile +++ b/tools/elastictemplate/Makefile @@ -1,7 +1,7 @@ VERSION ?= $(shell git describe --always --tags) BIN = elastictemplate BUILD_CMD = go build -o build/$(BIN)-$(VERSION)-$${GOOS}-$${GOARCH} & -IMAGE_REPO = docker.io/mse +IMAGE_REPO = mseoss FMT_CMD = $(gofmt -s -l -w $(find . -type f -name '*.go' -not -path './vendor/*') | tee /dev/stderr) default: diff --git a/tools/elastictemplate/README.md b/tools/elastictemplate/README.md index fb437b7..097e7ea 100644 --- a/tools/elastictemplate/README.md +++ b/tools/elastictemplate/README.md @@ -84,7 +84,7 @@ elstictemplate create -templates-file=templates.json -host= or using a docker container: ```bash -docker run --rm -v ${PWD}:/config -t docker.io/mse/elastictemplate create -templates-file=/config/templates.json \ +docker run --rm -v ${PWD}:/config -t mseoss/elastictemplate create -templates-file=/config/templates.json \ -host= -port= -auth-file=/config/auth-file.json ``` diff --git a/tools/elasticwatcher/Makefile b/tools/elasticwatcher/Makefile index 5ed0dee..d30dfb6 100644 --- a/tools/elasticwatcher/Makefile +++ b/tools/elasticwatcher/Makefile @@ -1,7 +1,7 @@ VERSION ?= $(shell git describe --always --tags) BIN = elasticwatcher BUILD_CMD = go build -o build/$(BIN)-$(VERSION)-$${GOOS}-$${GOARCH} & -IMAGE_REPO = docker.io/mse +IMAGE_REPO = mseoss FMT_CMD = $(gofmt -s -l -w $(find . -type f -name '*.go' -not -path './vendor/*') | tee /dev/stderr) default: diff --git a/tools/elasticwatcher/README.md b/tools/elasticwatcher/README.md index 33a7587..e8a66fa 100644 --- a/tools/elasticwatcher/README.md +++ b/tools/elasticwatcher/README.md @@ -114,7 +114,7 @@ elasticwatcher create -watches-file=watches.json -host= -por or using a docker container: ```bash -docker run --rm -v ${PWD}:/config -t docker.io/mse/elasticwatcher create -watches-file=/config/watches.json \ +docker run --rm -v ${PWD}:/config -t mseoss/elasticwatcher create -watches-file=/config/watches.json \ -host= -port= -auth-file=/config/auth-file.json ```