File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
deployments/chef/test/integration/custom_vars Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 93
93
with :
94
94
version : ${{ env.CHEF_VERSION }}
95
95
96
+
97
+ # Install of fluentd is failing on Debian 11, so we disable it for that distro.
98
+ - name : Set `with_fluentd` to false on Debian 11
99
+ if : matrix.DISTRO == 'debian-11'
100
+ run : |
101
+ yq eval '(.suites[] | select(.name=="custom_vars").attributes.splunk_otel_collector.with_fluentd) = false' -i kitchen.yml
102
+
96
103
- run : kitchen test ${{ matrix.DISTRO }}
97
104
98
105
- uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change 70
70
its ( 'content' ) { should match /^User=custom-user$/ }
71
71
its ( 'content' ) { should match /^Group=custom-group$/ }
72
72
end
73
- if os [ :family ] != 'suse' && os [ :family ] != 'opensuse' && !( os [ :family ] == 'debian' && ::Gem ::Version . new ( os . release ) >= ::Gem ::Version . new ( '12 ' ) )
73
+ if os [ :family ] != 'suse' && os [ :family ] != 'opensuse' && !( os [ :family ] == 'debian' && ::Gem ::Version . new ( os . release ) >= ::Gem ::Version . new ( '11 ' ) )
74
74
fluentd_config_path = '/etc/otel/collector/fluentd/fluent.conf'
75
75
describe service ( 'td-agent' ) do
76
76
it { should be_enabled }
You can’t perform that action at this time.
0 commit comments