Update the name of the docker repository to mseoss
This commit is contained in:
Родитель
16273a8b5f
Коммит
97c58749d0
|
@ -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) |
|
||||
|
|
|
@ -6,7 +6,7 @@ image:
|
|||
license:
|
||||
install: false
|
||||
image:
|
||||
repository: docker.io/mse/elasticlicense
|
||||
repository: mseoss/elasticlicense
|
||||
tag: latest
|
||||
pullPolicy: Always
|
||||
value:
|
||||
|
|
|
@ -6,7 +6,7 @@ image:
|
|||
license:
|
||||
install: false
|
||||
image:
|
||||
repository: docker.io/mse/elasticlicense
|
||||
repository: mseoss/elasticlicense
|
||||
tag: latest
|
||||
pullPolicy: Always
|
||||
value:
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
||||
```
|
||||
|
|
|
@ -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}
|
||||
```
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -36,7 +36,7 @@ elasticlicense install -license-file=license.json -host=<ELASTICSEARCH-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=<ELASTICSEARCH-HOST> -port=<ELASTICSEARCH-PORT> -auth-file=/config/auth-file.json
|
||||
```
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -84,7 +84,7 @@ elstictemplate create -templates-file=templates.json -host=<ELASTICSEARCH-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=<ELASTICSEARCH-HOST> -port=<ELASTICSEARCH-PORT> -auth-file=/config/auth-file.json
|
||||
```
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -114,7 +114,7 @@ elasticwatcher create -watches-file=watches.json -host=<ELASTICSEARCH-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=<ELASTICSEARCH-HOST> -port=<ELASTICSEARCH-PORT> -auth-file=/config/auth-file.json
|
||||
```
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче