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

Enable integrations-next by default in agent-bare.yaml #1531

Merged
merged 3 commits into from
Mar 25, 2022
Merged
Show file tree
Hide file tree
Changes from 2 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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ Main (unreleased)
- Improve error message for `agentctl` when timeout happens calling
`cloud-config` command (@marctc)

- Enable integrations-next by default in agent-bare.yaml (@hjet)
hjet marked this conversation as resolved.
Show resolved Hide resolved

### Bugfixes

- Ensure singleton integrations are honored in v2 integrations (@mattdurham)
Expand Down
1 change: 1 addition & 0 deletions production/kubernetes/agent-bare.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ spec:
containers:
- args:
- -config.file=/etc/agent/agent.yaml
- -enable-features=integrations-next
- -server.http.address=0.0.0.0:80
command:
- /bin/agent
Expand Down
3 changes: 3 additions & 0 deletions production/kubernetes/build/templates/bare/main.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ local containerPort = k.core.v1.containerPort;
],
) +
agent.withConfigHash(false) +
agent.withArgsMixin({
'enable-features': 'integrations-next'
},) +
// add dummy config or else will fail
agent.withAgentConfig({
server: { log_level: 'error' },
Expand Down