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

Downgrade elasticsearch docker image to 6.2.4 #9067

Merged
merged 1 commit into from
Jan 15, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion generators/generator-constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const DOCKER_ORACLE = 'sath89/oracle-12c:latest';
const DOCKER_HAZELCAST_MANAGEMENT_CENTER = 'hazelcast/management-center:3.11';
const DOCKER_MEMCACHED = 'memcached:1.5.12-alpine';
const DOCKER_KEYCLOAK = 'jboss/keycloak:4.6.0.Final';
const DOCKER_ELASTICSEARCH = 'elasticsearch:6.4.3'; // docker.elastic.co/elasticsearch/elasticsearch-oss:6.5.1
const DOCKER_ELASTICSEARCH = 'elasticsearch:6.2.4'; // The version should be coerent with the one from spring-data-elasticsearch project
Copy link
Contributor

Choose a reason for hiding this comment

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

DOCKER_ELASTICSEARCH needs to change to:

const DOCKER_ELASTICSEARCH = 'docker.elastic.co/elasticsearch/elasticsearch:6.2.4';

const DOCKER_KAFKA = 'wurstmeister/kafka:2.11-2.0.1';
const DOCKER_ZOOKEEPER = 'wurstmeister/zookeeper:3.4.6';
const DOCKER_SONAR = 'sonarqube:7.1';
Expand Down