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.pullSecrets` | specify image pull secrets | `nil` (does not add image pull secrets to deployed pods) |
|
||||||
| `image.pullPolicy` | image pull policy | `Always` |
|
| `image.pullPolicy` | image pull policy | `Always` |
|
||||||
| `license.install` | install x-pack license | `false` |
|
| `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.tag` | elasticlicense tool image tag | `latest` |
|
||||||
| `license.image.pullPolicy` | elasticlicense tool image pull policy | `Always` |
|
| `license.image.pullPolicy` | elasticlicense tool image pull policy | `Always` |
|
||||||
| `license.value` | x-pack license | `nil` (must be provided during installation) |
|
| `license.value` | x-pack license | `nil` (must be provided during installation) |
|
||||||
|
|
|
@ -6,7 +6,7 @@ image:
|
||||||
license:
|
license:
|
||||||
install: false
|
install: false
|
||||||
image:
|
image:
|
||||||
repository: docker.io/mse/elasticlicense
|
repository: mseoss/elasticlicense
|
||||||
tag: latest
|
tag: latest
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
value:
|
value:
|
||||||
|
|
|
@ -6,7 +6,7 @@ image:
|
||||||
license:
|
license:
|
||||||
install: false
|
install: false
|
||||||
image:
|
image:
|
||||||
repository: docker.io/mse/elasticlicense
|
repository: mseoss/elasticlicense
|
||||||
tag: latest
|
tag: latest
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
value:
|
value:
|
||||||
|
|
|
@ -13,8 +13,8 @@ The `VERSION` environment variable defines the version of the logstash base imag
|
||||||
|
|
||||||
```
|
```
|
||||||
export VERSION=6.2.3
|
export VERSION=6.2.3
|
||||||
docker build -t docker.io/mse/logstash:${VERSION} --build-arg VERSION=${VERSION} .
|
docker build -t mseoss/logstash:${VERSION} --build-arg VERSION=${VERSION} .
|
||||||
docker push docker.io/mse/logstash:${VERSION}
|
docker push mseoss/logstash:${VERSION}
|
||||||
```
|
```
|
||||||
|
|
||||||
# Run
|
# Run
|
||||||
|
@ -22,7 +22,7 @@ docker push docker.io/mse/logstash:${VERSION}
|
||||||
Logstash image can be started for testing with the following command:
|
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.
|
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
|
# Build
|
||||||
|
|
||||||
```
|
```
|
||||||
docker build -t docker.io/mse/oauth2_proxy:v2.2 .
|
docker build -t mseoss/oauth2_proxy:v2.2 .
|
||||||
docker push docker.io/mse/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
|
export VERSION=5.44
|
||||||
docker build -t docker.io/mse/stunnel:${VERSION} --build-arg VERSION=${VERSION} .
|
docker build -t mseoss/stunnel:${VERSION} --build-arg VERSION=${VERSION} .
|
||||||
docker push docker.io/mse/stunnel:${VERSION}
|
docker push mseoss/stunnel:${VERSION}
|
||||||
```
|
```
|
||||||
|
|
||||||
# Run
|
# Run
|
||||||
|
@ -17,5 +17,5 @@ docker push docker.io/mse/stunnel:${VERSION}
|
||||||
stunnel can be started in a docker container with the following command:
|
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)
|
VERSION ?= $(shell git describe --always --tags)
|
||||||
BIN = elasticlicense
|
BIN = elasticlicense
|
||||||
BUILD_CMD = go build -o build/$(BIN)-$(VERSION)-$${GOOS}-$${GOARCH} &
|
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)
|
FMT_CMD = $(gofmt -s -l -w $(find . -type f -name '*.go' -not -path './vendor/*') | tee /dev/stderr)
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -36,7 +36,7 @@ elasticlicense install -license-file=license.json -host=<ELASTICSEARCH-HOST> -po
|
||||||
or run the tool in a docker container:
|
or run the tool in a docker container:
|
||||||
|
|
||||||
```bash
|
```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
|
-host=<ELASTICSEARCH-HOST> -port=<ELASTICSEARCH-PORT> -auth-file=/config/auth-file.json
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
VERSION ?= $(shell git describe --always --tags)
|
VERSION ?= $(shell git describe --always --tags)
|
||||||
BIN = elastictemplate
|
BIN = elastictemplate
|
||||||
BUILD_CMD = go build -o build/$(BIN)-$(VERSION)-$${GOOS}-$${GOARCH} &
|
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)
|
FMT_CMD = $(gofmt -s -l -w $(find . -type f -name '*.go' -not -path './vendor/*') | tee /dev/stderr)
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -84,7 +84,7 @@ elstictemplate create -templates-file=templates.json -host=<ELASTICSEARCH-HOST>
|
||||||
or using a docker container:
|
or using a docker container:
|
||||||
|
|
||||||
```bash
|
```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
|
-host=<ELASTICSEARCH-HOST> -port=<ELASTICSEARCH-PORT> -auth-file=/config/auth-file.json
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
VERSION ?= $(shell git describe --always --tags)
|
VERSION ?= $(shell git describe --always --tags)
|
||||||
BIN = elasticwatcher
|
BIN = elasticwatcher
|
||||||
BUILD_CMD = go build -o build/$(BIN)-$(VERSION)-$${GOOS}-$${GOARCH} &
|
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)
|
FMT_CMD = $(gofmt -s -l -w $(find . -type f -name '*.go' -not -path './vendor/*') | tee /dev/stderr)
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -114,7 +114,7 @@ elasticwatcher create -watches-file=watches.json -host=<ELASTICSEARCH-HOST> -por
|
||||||
or using a docker container:
|
or using a docker container:
|
||||||
|
|
||||||
```bash
|
```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
|
-host=<ELASTICSEARCH-HOST> -port=<ELASTICSEARCH-PORT> -auth-file=/config/auth-file.json
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче