How to run elastic service in gitlab runner?Windows GitLab CI Runner using BashGitlab CI 9.5 service is not runningGitlab-Runner on Kubernetes/OpenshiftHow to upgrade to a new installed gitlab runner version?How to make GitLab Runner in Docker see a custom CA Root certificateGitlab CI - Start Shared Runner for normal reposHow do I register/reregister a Gitlab Runner using a pre-made config.toml?How to run a test in Gitlab for nodejs applicationConfigure cache on GitLab runner
How to use source_location in a variadic template function?
Output with the same length always
What can I do to keep a threaded bolt from falling out of it’s slot
Just one file echoed from an array of files
Why should I pay for an SSL certificate?
Why don't politicians push for fossil fuel reduction by pointing out their scarcity?
Starships without computers?
Check disk usage of files returned with spaces
Gofer work in exchange for Letter of Recommendation
What Linux Kernel runs Ubuntu 18.04.3 LTS
Independence of Mean and Variance of Discrete Uniform Distributions
Can I check a small array of bools in one go?
Control GPIO pins from C
Why did St. Jerome use "virago" in Gen. 2:23?
Reducing contention in thread-safe LruCache
Are there categories whose internal hom is somewhat 'exotic'?
Land Registry Clause
Do living authors still get paid royalties for their old work?
Can others monetize my project with GPLv3?
Killer Neighbors
Wristwatches in the cockpit
Why was ramjet fuel used as hydraulic fluid during Saturn V checkout?
Do predators tend to have vertical slit pupils versus horizontal for prey animals?
How to shade a polygon with curved lines in tikz?
How to run elastic service in gitlab runner?
Windows GitLab CI Runner using BashGitlab CI 9.5 service is not runningGitlab-Runner on Kubernetes/OpenshiftHow to upgrade to a new installed gitlab runner version?How to make GitLab Runner in Docker see a custom CA Root certificateGitlab CI - Start Shared Runner for normal reposHow do I register/reregister a Gitlab Runner using a pre-made config.toml?How to run a test in Gitlab for nodejs applicationConfigure cache on GitLab runner
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Hi stack overflow community!
I'm new to gitlab-ci runner and and here's a part of my gitlab-ci config file.
...
- name: docker.elastic.co/elasticsearch/elasticsearch:6.5.3
alias: elasticsearch
command: [ "bin/elasticsearch", "-Ediscovery.type=single-node" ]
...
This is the configurations in my gitlab-ci runner file. But this is not working. None of my elastic search based queries are working.
Please let me know if I'm missing something or if this is a known issue?
elasticsearch gitlab-ci gitlab-ci-runner
add a comment |
Hi stack overflow community!
I'm new to gitlab-ci runner and and here's a part of my gitlab-ci config file.
...
- name: docker.elastic.co/elasticsearch/elasticsearch:6.5.3
alias: elasticsearch
command: [ "bin/elasticsearch", "-Ediscovery.type=single-node" ]
...
This is the configurations in my gitlab-ci runner file. But this is not working. None of my elastic search based queries are working.
Please let me know if I'm missing something or if this is a known issue?
elasticsearch gitlab-ci gitlab-ci-runner
can you share the entire yml of the stage?
– Amityo
Mar 27 at 15:15
thanks for your response @Amityo , let me add a little more context here. The error is because of memory settings. I've tried the following :::: ES_JAVA_OPTS: "-Xms3g -Xmx3g" and sysctl -w vm.max_map_count=262144
– 1110
Mar 27 at 15:27
it will really help if you can edit the question with the entire yaml of the current stage (right now it is lacking in information and hard to understand the full picture) + if you can add the error/log from your build when trying to connect to elasticsearch
– Amityo
Mar 27 at 15:33
add a comment |
Hi stack overflow community!
I'm new to gitlab-ci runner and and here's a part of my gitlab-ci config file.
...
- name: docker.elastic.co/elasticsearch/elasticsearch:6.5.3
alias: elasticsearch
command: [ "bin/elasticsearch", "-Ediscovery.type=single-node" ]
...
This is the configurations in my gitlab-ci runner file. But this is not working. None of my elastic search based queries are working.
Please let me know if I'm missing something or if this is a known issue?
elasticsearch gitlab-ci gitlab-ci-runner
Hi stack overflow community!
I'm new to gitlab-ci runner and and here's a part of my gitlab-ci config file.
...
- name: docker.elastic.co/elasticsearch/elasticsearch:6.5.3
alias: elasticsearch
command: [ "bin/elasticsearch", "-Ediscovery.type=single-node" ]
...
This is the configurations in my gitlab-ci runner file. But this is not working. None of my elastic search based queries are working.
Please let me know if I'm missing something or if this is a known issue?
elasticsearch gitlab-ci gitlab-ci-runner
elasticsearch gitlab-ci gitlab-ci-runner
asked Mar 27 at 14:06
11101110
354 bronze badges
354 bronze badges
can you share the entire yml of the stage?
– Amityo
Mar 27 at 15:15
thanks for your response @Amityo , let me add a little more context here. The error is because of memory settings. I've tried the following :::: ES_JAVA_OPTS: "-Xms3g -Xmx3g" and sysctl -w vm.max_map_count=262144
– 1110
Mar 27 at 15:27
it will really help if you can edit the question with the entire yaml of the current stage (right now it is lacking in information and hard to understand the full picture) + if you can add the error/log from your build when trying to connect to elasticsearch
– Amityo
Mar 27 at 15:33
add a comment |
can you share the entire yml of the stage?
– Amityo
Mar 27 at 15:15
thanks for your response @Amityo , let me add a little more context here. The error is because of memory settings. I've tried the following :::: ES_JAVA_OPTS: "-Xms3g -Xmx3g" and sysctl -w vm.max_map_count=262144
– 1110
Mar 27 at 15:27
it will really help if you can edit the question with the entire yaml of the current stage (right now it is lacking in information and hard to understand the full picture) + if you can add the error/log from your build when trying to connect to elasticsearch
– Amityo
Mar 27 at 15:33
can you share the entire yml of the stage?
– Amityo
Mar 27 at 15:15
can you share the entire yml of the stage?
– Amityo
Mar 27 at 15:15
thanks for your response @Amityo , let me add a little more context here. The error is because of memory settings. I've tried the following :::: ES_JAVA_OPTS: "-Xms3g -Xmx3g" and sysctl -w vm.max_map_count=262144
– 1110
Mar 27 at 15:27
thanks for your response @Amityo , let me add a little more context here. The error is because of memory settings. I've tried the following :::: ES_JAVA_OPTS: "-Xms3g -Xmx3g" and sysctl -w vm.max_map_count=262144
– 1110
Mar 27 at 15:27
it will really help if you can edit the question with the entire yaml of the current stage (right now it is lacking in information and hard to understand the full picture) + if you can add the error/log from your build when trying to connect to elasticsearch
– Amityo
Mar 27 at 15:33
it will really help if you can edit the question with the entire yaml of the current stage (right now it is lacking in information and hard to understand the full picture) + if you can add the error/log from your build when trying to connect to elasticsearch
– Amityo
Mar 27 at 15:33
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55379230%2fhow-to-run-elastic-service-in-gitlab-runner%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55379230%2fhow-to-run-elastic-service-in-gitlab-runner%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
can you share the entire yml of the stage?
– Amityo
Mar 27 at 15:15
thanks for your response @Amityo , let me add a little more context here. The error is because of memory settings. I've tried the following :::: ES_JAVA_OPTS: "-Xms3g -Xmx3g" and sysctl -w vm.max_map_count=262144
– 1110
Mar 27 at 15:27
it will really help if you can edit the question with the entire yaml of the current stage (right now it is lacking in information and hard to understand the full picture) + if you can add the error/log from your build when trying to connect to elasticsearch
– Amityo
Mar 27 at 15:33