Update all docker images to version 6.2.4

This commit is contained in:
Cosmin Cojocar 2018-04-23 09:35:58 +02:00
Родитель 8abdb4f41e
Коммит c90dbeff2c
7 изменённых файлов: 9 добавлений и 9 удалений

Просмотреть файл

@ -14,7 +14,7 @@ The following table lists some of the configurable parameters of the `elasticsea
| Parameter | Description | Default |
| ---------------------------------------------- | ---------------------------------------- | --------------------------------------------------------- |
| `image.repository` | elasticsearch image with Azure repository | `mseoss/elasticsearch` |
| `image.tag` | specify image tag | `6.2.3` |
| `image.tag` | specify image tag | `6.2.4` |
| `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` |

Просмотреть файл

@ -1,6 +1,6 @@
image:
repository: mseoss/elasticsearch
tag: 6.2.3
tag: 6.2.4
pullPolicy: Always
license:

Просмотреть файл

@ -1,6 +1,6 @@
image:
repository: mseoss/elasticsearch
tag: 6.2.3
tag: 6.2.4
pullPolicy: Always
license:

Просмотреть файл

@ -14,13 +14,13 @@ The following table lists some of the configurable parameters of the `kibana-log
| `image.pullPolicy` | General image pull policy | `Always` |
| `image.pullSecrets` | General image pull secrets | `nil` (does not add image pull secrets to deployed pods) |
| `kibana.image.repository` | Kibana image | `docker.elastic.co/kibana/kibana` |
| `kibana.image.tag` | Kibana image tag | `6.2.3` |
| `kibana.image.tag` | Kibana image tag | `6.2.4` |
| `kibana.replicas` | Number of Kibana instances started | `3` |
| `kibana.ingress.host` | Kibana DNS domain | `nil` (must be provided during installation) |
| `kibana.ingress.public.cert` | Kibana public TLS certificate | `nil` (must be provided during installation) |
| `kibana.ingress.private.key` | Kibana private TLS key | `nil` (must be provided during installation) |
| `logstash.image.repository` | Logstash image | `mseoss/logstash` |
| `logstah.image.tag` | Logstash image tag | `6.2.3` |
| `logstah.image.tag` | Logstash image tag | `6.2.4` |
| `logstah.replicas` | Number of Logtash instances started | `3` |
| `logstah.queue.storageclass` | Storage class used for Logstash queue PV | `default` |
| `logstah.queue.distk_capacity` | Disk capacity of Logstash queue PV | `50Gi` |

Просмотреть файл

@ -4,7 +4,7 @@ image:
kibana:
image:
repository: docker.elastic.co/kibana/kibana
tag : 6.2.3
tag : 6.2.4
replicas: 3
env_var:
ELASTICSEARCH_URL: "http://elasticsearch:9200"
@ -28,7 +28,7 @@ kibana:
logstash:
image:
repository: mseoss/logstash
tag : 6.2.3
tag : 6.2.4
replicas: 3
queue:
storageclass: default

Просмотреть файл

@ -10,7 +10,7 @@ Plugins:
The `VERSION` environment variable defines the version of the elasticsearch base image.
```
export VERSION=6.2.3
export VERSION=6.2.4
docker build -t mseoss/elasticsearch:${VERSION} --build-arg VERSION=${VERSION} .
docker push mseoss/elasticsearch:${VERSION}
```

Просмотреть файл

@ -12,7 +12,7 @@ Plugins:
The `VERSION` environment variable defines the version of the logstash base image.
```
export VERSION=6.2.3
export VERSION=6.2.4
docker build -t mseoss/logstash:${VERSION} --build-arg VERSION=${VERSION} .
docker push mseoss/logstash:${VERSION}
```