Skip to content

Commit 0ed4355

Browse files
fix privileged flag
1 parent 5e09b22 commit 0ed4355

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

testing/integration/fleetserver_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,13 @@ func TestInstallFleetServerBootstrap(t *testing.T) {
8282

8383
esHost, ok := os.LookupEnv("ELASTICSEARCH_HOST")
8484
require.True(t, ok, "environment var ELASTICSEARCH_HOST is empty")
85+
t.Logf("fleet-server will enroll with es host: %q", esHost)
8586

8687
// Run `elastic-agent install` with fleet-server bootstrap options.
8788
// We use `--force` to prevent interactive execution.
8889
opts := &atesting.InstallOpts{
8990
Force: true,
90-
Privileged: false,
91+
Privileged: true,
9192
FleetBootstrapOpts: atesting.FleetBootstrapOpts{
9293
ESHost: esHost,
9394
ServiceToken: serviceToken,

0 commit comments

Comments
 (0)