We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e09b22 commit 0ed4355Copy full SHA for 0ed4355
testing/integration/fleetserver_test.go
@@ -82,12 +82,13 @@ func TestInstallFleetServerBootstrap(t *testing.T) {
82
83
esHost, ok := os.LookupEnv("ELASTICSEARCH_HOST")
84
require.True(t, ok, "environment var ELASTICSEARCH_HOST is empty")
85
+ t.Logf("fleet-server will enroll with es host: %q", esHost)
86
87
// Run `elastic-agent install` with fleet-server bootstrap options.
88
// We use `--force` to prevent interactive execution.
89
opts := &atesting.InstallOpts{
90
Force: true,
- Privileged: false,
91
+ Privileged: true,
92
FleetBootstrapOpts: atesting.FleetBootstrapOpts{
93
ESHost: esHost,
94
ServiceToken: serviceToken,
0 commit comments