Skip to content
Open
Show file tree
Hide file tree
Changes from all 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: 1 addition & 1 deletion kubernetes/linux/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ docker_cimprov_version=$(sudo tdnf list installed | grep docker-cimprov | awk '{
echo "DOCKER_CIMPROV_VERSION=$docker_cimprov_version" >> packages_version.txt

#install fluent-bit
sudo tdnf install azcu-fluent-bit-4.0.14 -y
sudo tdnf install azcu-fluent-bit-5.0.4 -y
echo "$(fluent-bit --version)" >> packages_version.txt

# Retry wrapper for gem install commands.
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/windows/setup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Write-Host ('Creating folder structure')
Write-Host ('Installing Fluent Bit');

try {
$fluentBitUri='https://packages.fluentbit.io/windows/fluent-bit-4.0.3-win64.zip'
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

did we also test out the log flow for windows doesnt have any impact?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes.
Both Windows nodes ingest at parity with Linux nodes.

$fluentBitUri='https://packages.fluentbit.io/windows/fluent-bit-5.0.3-win64.zip'
Invoke-WebRequest -Uri $fluentBitUri -OutFile /installation/fluent-bit.zip
Expand-Archive -Path /installation/fluent-bit.zip -Destination /installation/fluent-bit
Move-Item -Path /installation/fluent-bit/*/* -Destination /opt/fluent-bit/ -ErrorAction SilentlyContinue
Expand Down
Loading