Skip to content

Commit

Permalink
[Fleet] Temporary use the elastic user as kibana user to be able to c…
Browse files Browse the repository at this point in the history
…reate API keys (#49037)
  • Loading branch information
nchaulet authored Oct 25, 2019
1 parent 3cd59c4 commit 81b19fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/kbn-test/src/kbn/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const kibanaTestUser = {
};

export const kibanaServerTestUser = {
username: env.TEST_KIBANA_SERVER_USER || 'kibana',
username: env.TEST_KIBANA_SERVER_USER || 'elastic',
password: env.TEST_KIBANA_SERVER_PASS || 'changeme',
};

Expand Down
2 changes: 1 addition & 1 deletion src/cli/serve/serve.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function applyConfigOverrides(rawConfig, opts, extraCliOptions) {
set('optimize.watch', true);

if (!has('elasticsearch.username')) {
set('elasticsearch.username', 'kibana');
set('elasticsearch.username', 'elastic');
}

if (!has('elasticsearch.password')) {
Expand Down

0 comments on commit 81b19fc

Please sign in to comment.